diff options
author | danilo <danilo@FreeBSD.org> | 2013-11-14 03:25:46 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2013-11-14 03:25:46 +0800 |
commit | 1faaa7ccc4b6389e98f93b6431e2835e4b5597ac (patch) | |
tree | 75854fa460e77e86639d68c13c5d650b7c471696 | |
parent | e27f34d5d0008dd375226b3a26a4324e87618735 (diff) | |
download | freebsd-ports-graphics-1faaa7ccc4b6389e98f93b6431e2835e4b5597ac.tar.gz freebsd-ports-graphics-1faaa7ccc4b6389e98f93b6431e2835e4b5597ac.tar.zst freebsd-ports-graphics-1faaa7ccc4b6389e98f93b6431e2835e4b5597ac.zip |
- Remove the indefinite article from COMMENT
- Add stage support
-rw-r--r-- | games/xjump/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/games/xjump/Makefile b/games/xjump/Makefile index eec03ae2901..b0dca2dba32 100644 --- a/games/xjump/Makefile +++ b/games/xjump/Makefile @@ -9,19 +9,21 @@ MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= ports@FreeBSD.org -COMMENT= A simple X game where one tries to jump up as many levels as possible +COMMENT= Simple X game where one tries to jump up as many levels as possible WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/g} -PLIST_FILES= bin/xjump USE_XORG= xpm xaw MAKE_ARGS= CC="${CC} ${CFLAGS}" RECORD_FILE="/var/games/xjump.record" \ IDIR="-I${LOCALBASE}/include" LDIR="-L${LOCALBASE}/lib" ALL_TARGET= xjump -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} -m 2755 -g games ${WRKSRC}/xjump ${PREFIX}/bin - @${CAT} ${PKGMESSAGE} + ${INSTALL_PROGRAM} ${WRKSRC}/xjump ${STAGEDIR}${PREFIX}/bin + @${ECHO_CMD} "@group games" >> ${TMPPLIST} + @${ECHO_CMD} "@mode 2755" >> ${TMPPLIST} + @${ECHO_CMD} "bin/xjump" >> ${TMPPLIST} + @${ECHO_CMD} "@mode" >> ${TMPPLIST} + @${ECHO_CMD} "@group" >> ${TMPPLIST} .include <bsd.port.mk> |