diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2013-10-22 20:57:25 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2013-10-22 20:57:25 +0000 |
commit | 825f0aa3bb674159cb8f909cb55fbd5507aaed61 (patch) | |
tree | 60c899a5a6ee294a054b7bde746d3da4a03e7758 /archivers | |
parent | 5144cdb253e042168eafdf38940529abfca697b7 (diff) | |
download | ports-825f0aa3bb674159cb8f909cb55fbd5507aaed61.tar.gz ports-825f0aa3bb674159cb8f909cb55fbd5507aaed61.zip |
Notes
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/ppmd/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/archivers/ppmd/Makefile b/archivers/ppmd/Makefile index 6cc874425bf0..40d226a8bc0a 100644 --- a/archivers/ppmd/Makefile +++ b/archivers/ppmd/Makefile @@ -9,22 +9,20 @@ MASTER_SITES= CRITICAL MAINTAINER= ehaupt@FreeBSD.org COMMENT= Fast archiver with good compression ratio -NO_STAGE= yes -MAN1= ppmd.1 PORTDOCS= read_me.txt -PLIST_FILES= bin/ppmd +PLIST_FILES= bin/ppmd man/man1/ppmd.1.gz OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include <bsd.port.mk> |