diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-09-03 16:31:09 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-09-03 16:31:09 +0000 |
commit | 6aa4f9ff2199872b76c630b26865cf0f7fcfdf9b (patch) | |
tree | 710f849485dc05c1912b43fe09a74239f9da3190 /games/pengpong/Makefile | |
parent | .33.7 -> .33.7.1. It seems, the new version is not very different in the (diff) |
New port pengpong version 0.2: A cross-platform pong game written
in SDL
PR: 30060
Submitted by: Patrick Li <pat@databits.net>
Diffstat (limited to 'games/pengpong/Makefile')
-rw-r--r-- | games/pengpong/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/games/pengpong/Makefile b/games/pengpong/Makefile new file mode 100644 index 000000000000..d1db3c0dcd35 --- /dev/null +++ b/games/pengpong/Makefile @@ -0,0 +1,30 @@ +# 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.2 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= pat@databits.net + +LIB_DEPENDS= SDL_image.10:${PORTSDIR}/graphics/sdl_image + +SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config + +NO_WRKSUBDIR= yes +MAKE_ENV= SDL_CONFIG="${SDL_CONFIG}" + +do-install: +.ifndef(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + @${INSTALL_PROGRAM} ${WRKSRC}/pengpong ${PREFIX}/bin + +.include <bsd.port.mk> |