diff options
author | Chris Rees <crees@FreeBSD.org> | 2013-12-29 17:08:28 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2013-12-29 17:08:28 +0000 |
commit | 5d471a755584dc83f8a0cba2b68559c3ffbc48e9 (patch) | |
tree | bbd26110e5efeaa1dcf014712d7c9a20885925ba /textproc/atom | |
parent | baca7c11cdea73419a451d19ddc33251f39a13a3 (diff) |
Stage transmission ports and the rest maintained by me.
Various little obvious fixes, and a new rc script for stunnel-server
Notes
Notes:
svn path=/head/; revision=338028
Diffstat (limited to 'textproc/atom')
-rw-r--r-- | textproc/atom/Makefile | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/textproc/atom/Makefile b/textproc/atom/Makefile index be55f90db6e4..afd034095919 100644 --- a/textproc/atom/Makefile +++ b/textproc/atom/Makefile @@ -12,25 +12,15 @@ COMMENT= Converts text files to html with special attributes LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -MAN1= atom.1 -MANCOMPRESSED= no - GNU_CONFIGURE= yes -PLIST_FILES= bin/atom -PORTDOCS= README \ - TODO \ - testFile +PLIST_FILES= bin/atom man/man1/atom.1.gz +PORTDOCS= README TODO testFile -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -. for DOC in ${PORTDOCS} - ${CP} -R ${WRKSRC}/${DOC} ${DOCSDIR}/ -. endfor -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ .include <bsd.port.mk> |