Index: head/mail/maildrop/Makefile =================================================================== --- head/mail/maildrop/Makefile (revision 161219) +++ head/mail/maildrop/Makefile (revision 161220) @@ -1,123 +1,127 @@ # New ports collection makefile for: maildrop # Date created: 16 November 1998 # Whom: Tom Hukins # # $FreeBSD$ # # 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=, # MAILDROP_SGID= Maildrop will be installed with suid permissions for # MAILDROP_SUID, and sgid permissions for MAILDROP_SGID. # MAILDROP_TRUSTED_USERS= 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 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 CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-syslog=1 \ --enable-use-flock=1 \ --with-etcdir="${PREFIX}/etc" \ --enable-maildirquota CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre .if defined(WITH_AUTHLIB) .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.opt) .include "${.CURDIR}/../../security/courier-authlib/Makefile.opt" .endif .endif .include .if ${OSVERSION} <= 502010 USE_GMAKE =yes .endif .if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-db=gdbm .else CONFIGURE_ARGS+= --without-db .endif .if defined(MAILDROP_SUID) CONFIGURE_ARGS+= --enable-maildrop-uid="${MAILDROP_SUID}" .endif .if defined(MAILDROP_SGID) CONFIGURE_ARGS+= --enable-maildrop-gid="${MAILDROP_SGID}" .endif .if !defined(NO_MAILWRAPPER) 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) CONFIGURE_ARGS+= --enable-trusted-users="${MAILDROP_TRUSTED_USERS}" .endif .if defined(WITH_AUTHLIB) .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) .include "${.CURDIR}/../../security/courier-authlib/Makefile.dep" .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: @${REINPLACE_CMD} -e 's|@LIBS@|@LIBS@ \ -rpath=:${LOCALBASE}/lib/courier-authlib|' \ ${WRKSRC}/maildrop/Makefile.in .else CONFIGURE_ARGS+= --disable-authlib .endif .if defined(NOPORTDOCS) # Just install the binary and man pages, no extra documentation INSTALL_TARGET= install-maildrop install-deliverquota install-man .else INSTALL_TARGET= install-strip .endif MAN1+= lockmail.1 mailbot.1 maildirmake.1 maildrop.1 makemime.1 \ reformail.1 reformime.1 MAN5= maildir.5 MAN7= maildirquota.7 maildropex.7 maildropfilter.7 maildropgdbm.7 MAN8+= deliverquota.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 .if defined(MAILDROP_SUID) ${CHMOD} u+s ${PREFIX}/bin/maildrop .endif .if defined(MAILDROP_SGID) ${CHMOD} g+s ${PREFIX}/bin/maildrop .endif .include Property changes on: head/mail/maildrop/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.43 \ No newline at end of property +1.44 \ No newline at end of property Index: head/mail/maildrop/distinfo =================================================================== --- head/mail/maildrop/distinfo (revision 161219) +++ head/mail/maildrop/distinfo (revision 161220) @@ -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 Property changes on: head/mail/maildrop/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/mail/maildrop/pkg-plist =================================================================== --- head/mail/maildrop/pkg-plist (revision 161219) +++ head/mail/maildrop/pkg-plist (revision 161220) @@ -1,41 +1,42 @@ @comment $FreeBSD$ bin/deliverquota bin/lockmail bin/mailbot bin/maildirmake bin/maildrop bin/makemime bin/reformail bin/reformime +etc/quotawarnmsg.sample %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INSTALL.html %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/README.html %%PORTDOCS%%%%DOCSDIR%%/README.imapkeywords.html %%PORTDOCS%%%%DOCSDIR%%/README.maildirfilter.html %%PORTDOCS%%%%DOCSDIR%%/README.maildirquota.html %%PORTDOCS%%%%DOCSDIR%%/README.maildirquota.txt %%PORTDOCS%%%%DOCSDIR%%/README.postfix %%PORTDOCS%%%%DOCSDIR%%/README.sharedfolders.html %%PORTDOCS%%%%DOCSDIR%%/README.sharedfolders.txt %%PORTDOCS%%%%DOCSDIR%%/UPGRADE %%PORTDOCS%%%%DOCSDIR%%/UPGRADE.html %%PORTDOCS%%%%DOCSDIR%%/deliverquota.html %%PORTDOCS%%%%DOCSDIR%%/lockmail.html %%PORTDOCS%%%%DOCSDIR%%/mailbot.html %%PORTDOCS%%%%DOCSDIR%%/maildir.html %%PORTDOCS%%%%DOCSDIR%%/maildirmake.html %%PORTDOCS%%%%DOCSDIR%%/maildirquota.html %%PORTDOCS%%%%DOCSDIR%%/maildrop.html %%PORTDOCS%%%%DOCSDIR%%/maildropex.html %%PORTDOCS%%%%DOCSDIR%%/maildropfilter.html %%PORTDOCS%%%%DOCSDIR%%/maildropgdbm.html %%PORTDOCS%%%%DOCSDIR%%/maildroptips.txt %%PORTDOCS%%%%DOCSDIR%%/makemime.html %%PORTDOCS%%%%DOCSDIR%%/manpage.css %%PORTDOCS%%%%DOCSDIR%%/reformail.html %%PORTDOCS%%%%DOCSDIR%%/reformime.html %%PORTDOCS%%%%DOCSDIR%%/rfc2045.html %%PORTDOCS%%%%DOCSDIR%%/rfc822.html %%PORTDOCS%%@dirrm %%DOCSDIR%% Property changes on: head/mail/maildrop/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property