diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-13 22:39:18 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-13 22:39:18 +0800 |
commit | 0b14b63020777ddaaa46d202e0a3fc31cddbc3d8 (patch) | |
tree | 77e00e8158347951cebcc8d0ff29b0d2d3ae955b | |
parent | 9da13f852a7fa48388cf98719d959fef5d262547 (diff) | |
download | freebsd-ports-gnome-0b14b63020777ddaaa46d202e0a3fc31cddbc3d8.tar.gz freebsd-ports-gnome-0b14b63020777ddaaa46d202e0a3fc31cddbc3d8.tar.zst freebsd-ports-gnome-0b14b63020777ddaaa46d202e0a3fc31cddbc3d8.zip |
Support staging
-rw-r--r-- | games/qtv/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/qtv/Makefile b/games/qtv/Makefile index 717fdaaa7442..126ba4e32853 100644 --- a/games/qtv/Makefile +++ b/games/qtv/Makefile @@ -14,12 +14,13 @@ ALL_TARGET= ${PORTNAME} MAKE_ARGS= CC=${CC} WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.bin ${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.bin \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @${FIND} ${WRKSRC} -type d -name .svn -print0 | ${XARGS} -0 ${RM} -r @${RM} -f "${WRKSRC}/example-configs/PLACE YOUR QTV.BIN HERE" - cd ${WRKSRC}/example-configs && ${COPYTREE_SHARE} . ${DATADIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} metaqtv ${DATADIR} + cd ${WRKSRC}/example-configs && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DATADIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} metaqtv ${STAGEDIR}${DATADIR} .include <bsd.port.mk> |