diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 10:08:08 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-21 10:08:08 +0000 |
commit | 4234ffd6085cc47c1d2e497404e3985604bc8ff1 (patch) | |
tree | d2ceb62a7566502c231919345efb3e54c41de1f9 | |
parent | 66174e3c63f7d00d95ee70f30821f5b35c753776 (diff) | |
download | freebsd-ports-4234ffd6085cc47c1d2e497404e3985604bc8ff1.zip |
Support staging
-rw-r--r-- | mail/sortmail/Makefile | 13 | ||||
-rw-r--r-- | mail/sortmail/pkg-plist | 5 |
2 files changed, 8 insertions, 10 deletions
diff --git a/mail/sortmail/Makefile b/mail/sortmail/Makefile index 4b6ba774a758..1d0815bcce31 100644 --- a/mail/sortmail/Makefile +++ b/mail/sortmail/Makefile @@ -10,17 +10,12 @@ MAINTAINER= lasse@freebsdcluster.org COMMENT= Useful tool for sorting mbox style mailboxes after date NO_WRKSUBDIR= yes -MAN1= recomposemail.1 decomposemail.1 sortmail.1 NO_BUILD= yes -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/recomposemail ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/decomposemail ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/sortmail ${PREFIX}/bin - - ${INSTALL_MAN} ${WRKSRC}/recomposemail.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/decomposemail.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/sortmail.1 ${PREFIX}/man/man1 +.for f in recomposemail decomposemail sortmail + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${MANPREFIX}/man/man1 +.endfor .include <bsd.port.mk> diff --git a/mail/sortmail/pkg-plist b/mail/sortmail/pkg-plist index 4fb4a21c7f76..d2aa63a12f68 100644 --- a/mail/sortmail/pkg-plist +++ b/mail/sortmail/pkg-plist @@ -1,3 +1,6 @@ -bin/recomposemail bin/decomposemail +bin/recomposemail bin/sortmail +man/man1/decomposemail.1.gz +man/man1/recomposemail.1.gz +man/man1/sortmail.1.gz |