diff options
author | danilo <danilo@FreeBSD.org> | 2013-11-14 04:09:22 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2013-11-14 04:09:22 +0800 |
commit | 0263821cc27b068718b184b0c5726e92d5015ca1 (patch) | |
tree | 2e0ddc5e9ffe96a2f9cccc9ccb812aa2a523a434 | |
parent | 2315a318d2325b8a8cbd19734402a9ff54461aac (diff) | |
download | freebsd-ports-gnome-0263821cc27b068718b184b0c5726e92d5015ca1.tar.gz freebsd-ports-gnome-0263821cc27b068718b184b0c5726e92d5015ca1.tar.zst freebsd-ports-gnome-0263821cc27b068718b184b0c5726e92d5015ca1.zip |
- Add stage support
-rw-r--r-- | games/xmille/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games/xmille/Makefile b/games/xmille/Makefile index 1f13f660ad75..4cff8ab4d026 100644 --- a/games/xmille/Makefile +++ b/games/xmille/Makefile @@ -16,18 +16,15 @@ WRKSRC= ${WRKDIR}/Mille USES= imake USE_XORG= x11 xext -MAN1= xmille.1 -MANCOMPRESSED= no -PLIST_FILES= bin/xmille +PLIST_FILES= bin/xmille man/man1/xmille.1.gz MAKE_JOBS_UNSAFE= yes CFLAGS+= -Wno-error=return-type -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -name '*.[ao]' -delete do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xmille ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/xmille.man ${MANPREFIX}/man/man1/xmille.1 + ${INSTALL_PROGRAM} ${WRKSRC}/xmille ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/xmille.man ${STAGEDIR}${MANPREFIX}/man/man1/xmille.1 .include <bsd.port.mk> |