diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2001-08-30 01:03:06 +0000 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2001-08-30 01:03:06 +0000 |
commit | 2cd9517728436e710da1918f281c61fafaa294c1 (patch) | |
tree | a2c64a1627e265026076e026ffff37e2baed51a8 /mail/postfix-current | |
parent | be1d647505cf4f4154cbeec7ec9e7d3af6b89cf7 (diff) | |
download | FreeBSD-ports-2cd9517728436e710da1918f281c61fafaa294c1.zip FreeBSD-ports-2cd9517728436e710da1918f281c61fafaa294c1.tar.gz |
Update postfix to 20010808
Update configure script to be smaller and fix it from trying to grep directories
Update TLS to version for new postfix version
Add missing man pages
PR: 30177
Submitted by: maintainer, slin@infomath.math.nctu.edu.tw
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/Makefile | 7 | ||||
-rw-r--r-- | mail/postfix-current/pkg-plist | 1 | ||||
-rw-r--r-- | mail/postfix-current/scripts/configure | 5 | ||||
-rw-r--r-- | mail/postfix-current/scripts/configure.postfix | 4 |
4 files changed, 7 insertions, 10 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index 58e7b54..76b208e 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -6,8 +6,7 @@ # PORTNAME= postfix -PORTVERSION= 20010525 -PORTREVISION= 3 +PORTVERSION= 20010808 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/%SUBDIR%/ \ @@ -29,8 +28,8 @@ MAN5= access.5 aliases.5 canonical.5 regexp_table.5 relocated.5 \ transport.5 virtual.5 MAN8= bounce.8 cleanup.8 defer.8 error.8 flush.8 lmtp.8 local.8 \ - master.8 pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 smtpd.8 \ - spawn.8 trivial-rewrite.8 virtual.8 + master.8 nqmgr.8 pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 \ + smtpd.8 spawn.8 trivial-rewrite.8 virtual.8 CONF1= access aliases canonical main.cf master.cf \ regexp_table relocated transport virtual diff --git a/mail/postfix-current/pkg-plist b/mail/postfix-current/pkg-plist index 5b29765..791b5f5 100644 --- a/mail/postfix-current/pkg-plist +++ b/mail/postfix-current/pkg-plist @@ -105,6 +105,7 @@ sbin/sendmail %%SUB_DOCS%%share/doc/postfix/postmap.1.html %%SUB_DOCS%%share/doc/postfix/postsuper.1.html %%SUB_DOCS%%share/doc/postfix/qmgr.8.html +%%SUB_DOCS%%share/doc/postfix/qmqpd.8.html %%SUB_DOCS%%share/doc/postfix/queuing.html %%SUB_DOCS%%share/doc/postfix/rate.html %%SUB_DOCS%%share/doc/postfix/receiving.html diff --git a/mail/postfix-current/scripts/configure b/mail/postfix-current/scripts/configure index 353b7ae..62a283f 100644 --- a/mail/postfix-current/scripts/configure +++ b/mail/postfix-current/scripts/configure @@ -2,7 +2,4 @@ # # $FreeBSD$ -for f in `find ${WRKSRC} | xargs grep -l '\!\!PREFIX\!\!' ` ; do \ - mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \ - rm $f.orig -done +find ${WRKSRC} -type f | xargs grep -l '\!\!PREFIX\!\!' | xargs perl -pi.fbsd -e 's+!!PREFIX!!+$PREFIX+g' diff --git a/mail/postfix-current/scripts/configure.postfix b/mail/postfix-current/scripts/configure.postfix index 7f31ece..7975ba3 100644 --- a/mail/postfix-current/scripts/configure.postfix +++ b/mail/postfix-current/scripts/configure.postfix @@ -87,8 +87,8 @@ while [ "$1" ]; do echo "BIN1+= tlsmgr" echo "POSTFIX_CCARGS+= -DHAS_SSL -I/usr/include/openssl" echo "POSTFIX_AUXLIBS+= -lssl -lcrypto" - echo "DISTFILES+= \${DISTNAME}.tar.gz pfixtls-0.7.3a-snap20010525-0.9.6a.tar.gz" - echo "EXTRA_PATCHES+= \${WRKDIR}/pfixtls-0.7.3a-snap20010525-0.9.6a/pfixtls.diff" + echo "DISTFILES+= \${DISTNAME}.tar.gz pfixtls-0.7.8-snap20010808-0.9.6b.tar.gz" + echo "EXTRA_PATCHES+= \${WRKDIR}/pfixtls-0.7.8-snap20010808-0.9.6b/pfixtls.diff" echo "PATCH_STRIP= -p1" SUB_TLS="" ;; |