diff options
author | billf <billf@FreeBSD.org> | 2000-09-13 20:50:45 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2000-09-13 20:50:45 +0000 |
commit | f0f033d241551a0519578c387f7748502ce915f8 (patch) | |
tree | 6271efdfc713bcf30874bf2fb595e1f6e9ebc5a2 /mail/postfix-current/scripts | |
parent | 0c4ff65947df85786423032382e750ca17dca183 (diff) | |
download | FreeBSD-ports-f0f033d241551a0519578c387f7748502ce915f8.zip FreeBSD-ports-f0f033d241551a0519578c387f7748502ce915f8.tar.gz |
Update to the latest snapshot, plus add hooks for all the very spiffy
plugins that postfix can use.
Submitted by: Omanchu Oogali <missnglnk@sneakerz.org> (new MAINTAINER)
Diffstat (limited to 'mail/postfix-current/scripts')
-rw-r--r-- | mail/postfix-current/scripts/configure | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/mail/postfix-current/scripts/configure b/mail/postfix-current/scripts/configure index a46faa9..5efeadd 100644 --- a/mail/postfix-current/scripts/configure +++ b/mail/postfix-current/scripts/configure @@ -2,25 +2,7 @@ # # $FreeBSD$ -mv ${WRKSRC}/global/mail_params.h ${WRKSRC}/global/mail_params.h.bak -sed <${WRKSRC}/global/mail_params.h.bak >${WRKSRC}/global/mail_params.h s+!!PREFIX!!+$PREFIX+g - -mv ${WRKSRC}/conf/main.cf ${WRKSRC}/conf/main.cf.bak -sed s+!!PREFIX!!+$PREFIX+g <${WRKSRC}/conf/main.cf.bak >${WRKSRC}/conf/main.cf - -cd ${WRKSRC}/man - -for f in ${MAN1} ; do - mv man1/$f man1/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g <man1/$f.bak | soelim >man1/$f -done - -for f in ${MAN5} ; do - mv man5/$f man5/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g <man5/$f.bak | soelim >man5/$f -done - -for f in ${MAN8} ; do - mv man8/$f man8/$f.bak && \ - sed s+!!PREFIX!!+$PREFIX+g <man8/$f.bak | soelim >man8/$f +for f in `grep -r "\!\!PREFIX\!\!" ${WRKSRC} | cut -f 1 -d ':' | uniq` ; do \ + mv $f $f.orig && sed s+!!PREFIX!!+$PREFIX+g < $f.orig > $f && \ + rm $f.orig done |