7e52725f2a
Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# New ports collection makefile for: pengpong
|
|
# Date created: Fri Aug 24 18:21:25 EDT 2001
|
|
# Whom: Patrick Li <pat@databits.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pengpong
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= pat@FreeBSD.org
|
|
COMMENT= A cross-platform pong game written in SDL
|
|
|
|
LIB_DEPENDS= SDL_image.10:${PORTSDIR}/graphics/sdl_image
|
|
|
|
SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config
|
|
|
|
NO_WRKSUBDIR= yes
|
|
MAKE_ENV= SDL_CONFIG="${SDL_CONFIG}"
|
|
|
|
DATAFILES= 24P_Copperplate_Blue.png ball.tga logo.jpg \
|
|
paddle.tga red.png
|
|
|
|
pre-patch:
|
|
@${PERL} -pi.orig -e \
|
|
's|/usr/local/share/games/pengpong|${DATADIR}|' \
|
|
${WRKSRC}/files.h
|
|
@${PERL} -pi.orig -e 's|0.2|${PORTVERSION}|' \
|
|
${WRKSRC}/pengpong.cpp
|
|
|
|
do-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/pengpong ${PREFIX}/bin
|
|
.for files in ${DATAFILES}
|
|
@${MKDIR} ${DATADIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/${files} ${DATADIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|