diff options
author | Daniel Harris <dannyboy@FreeBSD.org> | 2000-12-23 00:56:26 +0000 |
---|---|---|
committer | Daniel Harris <dannyboy@FreeBSD.org> | 2000-12-23 00:56:26 +0000 |
commit | a3ed93a236bb7f82c705b0abb045df02a4afa06c (patch) | |
tree | 8962898ed34ac9b8d7d7d514d96166f551146071 /mail/postfix1 | |
parent | Add X threads support. (diff) |
Update to 19991231-pl13.
PR: 23696
Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=36257
Diffstat (limited to 'mail/postfix1')
-rw-r--r-- | mail/postfix1/Makefile | 4 | ||||
-rw-r--r-- | mail/postfix1/distinfo | 2 | ||||
-rw-r--r-- | mail/postfix1/pkg-install | 1 | ||||
-rw-r--r-- | mail/postfix1/scripts/configure | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/mail/postfix1/Makefile b/mail/postfix1/Makefile index a481cc275f22..90eece8b7c8f 100644 --- a/mail/postfix1/Makefile +++ b/mail/postfix1/Makefile @@ -6,7 +6,7 @@ # PORTNAME= postfix -PORTVERSION= 19991231.10 +PORTVERSION= 19991231.13 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ @@ -16,7 +16,7 @@ MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.cs.tu-berlin.de/pub/net/mail/postfix/official/ \ ftp://ftp.mira.net/pub/unix/mail/postfix/official/ \ ftp://coda.nctu.edu.tw/network/mail/postfix/official/ -DISTNAME= ${PORTNAME}-19991231-pl10 +DISTNAME= ${PORTNAME}-19991231-pl13 MAINTAINER= blaz@amis.net diff --git a/mail/postfix1/distinfo b/mail/postfix1/distinfo index af7687731c54..854fffa3294c 100644 --- a/mail/postfix1/distinfo +++ b/mail/postfix1/distinfo @@ -1 +1 @@ -MD5 (postfix-19991231-pl10.tar.gz) = 0ff9c13e83ea5123852603904d4f1978 +MD5 (postfix-19991231-pl13.tar.gz) = f119438aae0aa1346953ae326864da9e diff --git a/mail/postfix1/pkg-install b/mail/postfix1/pkg-install index 7f5976b37897..933c669e6b98 100644 --- a/mail/postfix1/pkg-install +++ b/mail/postfix1/pkg-install @@ -87,5 +87,6 @@ if [ x"$2" = xPOST-INSTALL ]; then fi /usr/sbin/chown root:maildrop ${PKG_PREFIX}/sbin/postdrop /bin/chmod 2555 ${PKG_PREFIX}/sbin/postdrop + /bin/mkdir -p /var/spool/postfix ${PKG_PREFIX}/sbin/postfix check fi diff --git a/mail/postfix1/scripts/configure b/mail/postfix1/scripts/configure index c96a3f3a2faa..90b835702fd7 100644 --- a/mail/postfix1/scripts/configure +++ b/mail/postfix1/scripts/configure @@ -19,7 +19,7 @@ for f in ${MAN8} ; do soelim man8/$f.bak | sed s+!!PREFIX!!+$PREFIX+g >man8/$f done -for f in `grep -r "\!\!PREFIX\!\!" ${WRKSRC} | cut -f 1 -d ':' | uniq` ; do \ +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 |