diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-21 18:08:08 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-21 18:08:08 +0800 |
commit | 1b43ee71617857a5d27dd4882b46fe74de74b936 (patch) | |
tree | d2ceb62a7566502c231919345efb3e54c41de1f9 /mail | |
parent | febf6da37e999dc66451337a3d06f520db2f2b61 (diff) | |
download | freebsd-ports-gnome-1b43ee71617857a5d27dd4882b46fe74de74b936.tar.gz freebsd-ports-gnome-1b43ee71617857a5d27dd4882b46fe74de74b936.tar.zst freebsd-ports-gnome-1b43ee71617857a5d27dd4882b46fe74de74b936.zip |
Support staging
Diffstat (limited to 'mail')
-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 |