diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-16 22:12:10 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-16 22:12:10 +0800 |
commit | 853ebbb64b7299162979285d3e13d6ef3be887fb (patch) | |
tree | 1fd54c485ed9e821cd1237889afc937e10f775a7 /comms | |
parent | 7dc88f02c07dca8d6501d0984f9c9af8854f5e7d (diff) | |
download | freebsd-ports-gnome-853ebbb64b7299162979285d3e13d6ef3be887fb.tar.gz freebsd-ports-gnome-853ebbb64b7299162979285d3e13d6ef3be887fb.tar.zst freebsd-ports-gnome-853ebbb64b7299162979285d3e13d6ef3be887fb.zip |
Support staging
Diffstat (limited to 'comms')
-rw-r--r-- | comms/zmtx-zmrx/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/comms/zmtx-zmrx/Makefile b/comms/zmtx-zmrx/Makefile index f0802dd964fd..030d5dc49a5a 100644 --- a/comms/zmtx-zmrx/Makefile +++ b/comms/zmtx-zmrx/Makefile @@ -14,19 +14,12 @@ USE_CSTD= gnu89 MAKEFILE= makefile WRKSRC= ${WRKDIR}/${PORTNAME} -MAN1= zmrx.1 zmtx.1 -PLIST_FILES= bin/zmrx bin/zmtx +PLIST_FILES= bin/zmrx bin/zmtx man/man1/zmrx.1.gz man/man1/zmtx.1.gz -NO_STAGE= yes do-install: .for f in zmrx zmtx - ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${f}.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .endfor -post-install: - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - .include <bsd.port.mk> |