freebsd-ports/games/3dpong/Makefile
Kirill Ponomarev 0c70864fbc Update to version 0.5
PR:		ports/69001
Submitted by:	Ports Fury
2004-07-14 12:21:20 +00:00

37 lines
934 B
Makefile

# New ports collection makefile for: 3dpong
# Date created: 10 March 1998
# Whom: Andrey Zakhvatov
#
# $FreeBSD$
#
PORTNAME= 3dpong
PORTVERSION= 0.5
CATEGORIES= games
MASTER_SITES= ftp://ftp.sonic.net/pub/users/nbs/unix/x/3dpong/src/
MAINTAINER= ports@FreeBSD.org
COMMENT= X Window 3D Pong game for 1 or 2 players with a ball and paddles
USE_X_PREFIX= yes
USE_REINPLACE= yes
USE_GMAKE= yes
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${X11BASE}/include" \
XLIB="-L${X11BASE}/lib -lX11"
post-patch:
@${REINPLACE_CMD} -e \
's|cat sounds/|cat ${DATADIR}/|g' ${WRKSRC}/src/3dpong.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/3dpong ${PREFIX}/bin
@${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/sounds/*.au ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in AUTHORS.txt CHANGES.txt INSTALL.txt README.txt TODO.txt
${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>