diff options
author | sergei <sergei@FreeBSD.org> | 2006-05-03 06:54:36 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2006-05-03 06:54:36 +0800 |
commit | 1411e85dd788773455b6872619830abcce3a06a1 (patch) | |
tree | 365bb18cb9c26add6dcec6b02e23eb2b2a0cb666 | |
parent | 4ac791cc0adff10626c2d24f7e3ba2b9b4135857 (diff) | |
download | freebsd-ports-gnome-1411e85dd788773455b6872619830abcce3a06a1.tar.gz freebsd-ports-gnome-1411e85dd788773455b6872619830abcce3a06a1.tar.zst freebsd-ports-gnome-1411e85dd788773455b6872619830abcce3a06a1.zip |
- Update to 2.0.2
- Install quotawarnmsg.sample file [1]
- Add WITH_FAM knob to explicitly enable optional support for FAM
in addition to autodetecting its presence; utilize USE_FAM for dependency
(choose between devel/gamin and devel/fam according to user's preference)
PR: ports/95169 [1]
Submitted by: Rui Lopes <rgl@ruilopes.com> [1]
-rw-r--r-- | mail/maildrop/Makefile | 14 | ||||
-rw-r--r-- | mail/maildrop/distinfo | 9 | ||||
-rw-r--r-- | mail/maildrop/pkg-plist | 1 |
3 files changed, 16 insertions, 8 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 5e2f0a3c554b..52b138ce75e9 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -6,6 +6,8 @@ # # The following compile-time options are available: +# WITH_AUTHLIB=yes Enable optional support for Courier Auth Library +# WITH_FAM=yes Enable optional support for File Alteration Monitor # WITH_GDBM=yes Enable database extensions using GDBM (default: off) # MAILDROP_SUID=<uid>, # MAILDROP_SGID=<gid> Maildrop will be installed with suid permissions for @@ -13,10 +15,9 @@ # MAILDROP_TRUSTED_USERS=<user> Specify users allowed to use the -d option # NO_MAILWRAPPER=yes If defined, let configure guess which sendmail binary # to use -# WITH_AUTHLIB=yes Enable optional support for Courier Auth Library PORTNAME= maildrop -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.2 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= courier @@ -24,6 +25,8 @@ MASTER_SITE_SUBDIR= courier MAINTAINER= sergei@FreeBSD.org COMMENT= Mail delivery agent (MDA) with filtering abilities +USE_GPG= yes +SIG_SUFFIX= .sig USE_BZIP2= yes USE_PERL5= yes GNU_CONFIGURE= yes @@ -69,8 +72,8 @@ CONFIGURE_ARGS+= --enable-maildrop-gid="${MAILDROP_SGID}" CONFIGURE_ARGS+= --enable-sendmail=/usr/sbin/sendmail .endif -.if exists(${LOCALBASE}/lib/libfam.so.0) -LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam +.if defined(WITH_FAM) || exists(${LOCALBASE}/lib/libfam.so.0) +USE_FAM= yes .endif .if defined(MAILDROP_TRUSTED_USERS) @@ -83,7 +86,6 @@ CONFIGURE_ARGS+= --enable-trusted-users="${MAILDROP_TRUSTED_USERS}" .endif BUILD_DEPENDS+= courierauthconfig:${PORTSDIR}/security/courier-authlib-base RUN_DEPENDS+= courierauthconfig:${PORTSDIR}/security/courier-authlib-base -USE_REINPLACE= yes CONFIGURE_ARGS+= --enable-authlib post-patch: @@ -110,6 +112,8 @@ DOCS= AUTHORS INSTALL INSTALL.html README README.html README.postfix \ UPGRADE UPGRADE.html maildroptips.txt maildir/README.* post-install: + ${INSTALL_DATA} ${WRKSRC}/maildir/quotawarnmsg \ + ${PREFIX}/etc/quotawarnmsg.sample .if !defined(NOPORTDOCS) cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif diff --git a/mail/maildrop/distinfo b/mail/maildrop/distinfo index c1f033090ca8..4a3d4d313c85 100644 --- a/mail/maildrop/distinfo +++ b/mail/maildrop/distinfo @@ -1,3 +1,6 @@ -MD5 (maildrop-2.0.1.tar.bz2) = 6ea97cb4e6757579873218adf212dbf0 -SHA256 (maildrop-2.0.1.tar.bz2) = 2de43cb4536e71ca54ce8dce663d6d264b80fdadb2cd6b1007579efd727b31fb -SIZE (maildrop-2.0.1.tar.bz2) = 2105424 +MD5 (maildrop-2.0.2.tar.bz2) = 69c7cb0c93669c0831eb3ee304da8eac +SHA256 (maildrop-2.0.2.tar.bz2) = 6f10d3b503a8bf878b8d270543a15acca645667504803c586a2a0cc0642413cd +SIZE (maildrop-2.0.2.tar.bz2) = 2139549 +MD5 (maildrop-2.0.2.tar.bz2.sig) = 7552416948fd20b2353d2df01d01c946 +SHA256 (maildrop-2.0.2.tar.bz2.sig) = 78465b4e6a2522deef761aeb2740f29e33ac8d29937f0ebc261e96ee676c30e2 +SIZE (maildrop-2.0.2.tar.bz2.sig) = 65 diff --git a/mail/maildrop/pkg-plist b/mail/maildrop/pkg-plist index 74ecf94da26b..6971e24dff32 100644 --- a/mail/maildrop/pkg-plist +++ b/mail/maildrop/pkg-plist @@ -7,6 +7,7 @@ bin/maildrop bin/makemime bin/reformail bin/reformime +etc/quotawarnmsg.sample %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INSTALL.html |