diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-16 14:12:10 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-16 14:12:10 +0000 |
commit | 50e496e50a1866332d8c2144036b810a07ab2b13 (patch) | |
tree | 1fd54c485ed9e821cd1237889afc937e10f775a7 /comms | |
parent | 7d615912727adcc27148fb245eacf56ecbf2d501 (diff) | |
download | ports-50e496e50a1866332d8c2144036b810a07ab2b13.tar.gz ports-50e496e50a1866332d8c2144036b810a07ab2b13.zip |
Notes
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> |