diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-04 23:35:15 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-04 23:35:15 +0000 |
commit | 2508d2926dad2159557a484ff85f7659401486f0 (patch) | |
tree | 5c2c6417c99a986997f488c6551479e020eabd02 /archivers | |
parent | a7e0a89a2eb0e1460187202765758fc500eb2c4b (diff) |
Support stage
Notes
Notes:
svn path=/head/; revision=338686
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/lbrate/Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/archivers/lbrate/Makefile b/archivers/lbrate/Makefile index f2b778e61988..2a8216487a33 100644 --- a/archivers/lbrate/Makefile +++ b/archivers/lbrate/Makefile @@ -15,19 +15,14 @@ LICENSE= GPLv2 MAKE_ARGS= CC="${CC}" CFLAGS="${CPPFLAGS} ${CFLAGS} ${LDFLAGS}" -NO_STAGE= yes -MAN1= lbrate.1 PORTDOCS= ChangeLog README TODO -PLIST_FILES= bin/lbrate - -.include <bsd.port.options.mk> +PLIST_FILES= bin/lbrate \ + man/man1/lbrate.1.gz do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/lbrate ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/lbrate.1 ${MANPREFIX}/man/man1 -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}) -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/lbrate ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/lbrate.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include <bsd.port.mk> |