diff options
author | itetcu <itetcu@FreeBSD.org> | 2008-06-30 05:41:04 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2008-06-30 05:41:04 +0800 |
commit | 7427f1a771cf87927505c325b12484c3411fa6c7 (patch) | |
tree | 6a4afd71cfa0cbb8a342f945ab229985e99e52dc /mail/mixminion | |
parent | 4d1db18a53957b1dfcdd45f28c3000ac6a5cc08d (diff) | |
download | freebsd-ports-gnome-7427f1a771cf87927505c325b12484c3411fa6c7.tar.gz freebsd-ports-gnome-7427f1a771cf87927505c325b12484c3411fa6c7.tar.zst freebsd-ports-gnome-7427f1a771cf87927505c325b12484c3411fa6c7.zip |
- fix typo and thus plist for -DNOPORTDOCS
- OPTIONify
- bump PORTREVISION
Prompted by: QA Tindy run
Diffstat (limited to 'mail/mixminion')
-rw-r--r-- | mail/mixminion/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/mixminion/Makefile b/mail/mixminion/Makefile index 72b01c420b4a..80a1a877b546 100644 --- a/mail/mixminion/Makefile +++ b/mail/mixminion/Makefile @@ -7,6 +7,7 @@ PORTNAME= Mixminion DISTVERSION= 0.0.8alpha2 +PORTREVISION= 1 CATEGORIES= mail security MASTER_SITES= http://www.mixminion.net/dist/${DISTVERSION}/ @@ -24,6 +25,10 @@ MAN8= mixminiond.8 PORTDOCS= statusfd.txt tutorial.txt +OPTIONS= SERVER "Also install the server" on + +.include <bsd.port.pre.mk> + .if !defined(WITHOUT_SERVER) USE_RC_SUBR+= mixminiond SUB_FILES+= pkg-message @@ -51,11 +56,11 @@ post-install: @${CHMOD} 0700 /var/log/mixminion @${CAT} ${PKGMESSAGE} .endif -.if !defined(NOPORTDOC) +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |