summaryrefslogtreecommitdiff
path: root/mail/postfix20/Makefile
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-08-04 13:53:00 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-08-04 13:53:00 +0000
commit645386427f51f8bed66dffafec38d9f20082d52d (patch)
tree57dda80999ca3ddd9ac23e2f86b3fb592389f512 /mail/postfix20/Makefile
parentAdd version number to package name. (diff)
o Upgrade to 19990601
PR: ports/12603 Submitted by: Hoss Firooznia <hfir@math.rochester.edu> o Put CFLAGS in the proper place (not in ALL_TARGET)
Notes
Notes: svn path=/head/; revision=20523
Diffstat (limited to 'mail/postfix20/Makefile')
-rw-r--r--mail/postfix20/Makefile42
1 files changed, 20 insertions, 22 deletions
diff --git a/mail/postfix20/Makefile b/mail/postfix20/Makefile
index 5da40f0feb9f..3c0d378f2d33 100644
--- a/mail/postfix20/Makefile
+++ b/mail/postfix20/Makefile
@@ -1,40 +1,40 @@
# New ports collection makefile for: postfix
-# Version required: postfix 19990317-pl03
+# Version required: 19990601
# Date created: 18 Mar 1999
# Whom: torstenb
#
-# $Id: Makefile,v 1.1.1.1 1999/03/29 20:15:08 torstenb Exp $
+# $Id: Makefile,v 1.2 1999/05/02 20:26:38 torstenb Exp $
#
-DISTNAME= postfix-19990317-pl03
-PKGNAME= postfix-alpha-19990317.03
+DISTNAME= postfix-19990601
CATEGORIES= mail
-MASTER_SITES= ftp://ftp.merit.edu/postfix/ \
- ftp://ftp.snoopy.net/pub/mirrors/postfix/ \
- ftp://ftp.reverse.net/pub/postfix/ \
- ftp://postfix.eu.org/pub/postfix/ \
- ftp://ftp.sunet.se/pub/unix/mail/postfix/ \
- ftp://ftp.cs.tu-berlin.de/pub/net/mail/postfix/ \
- ftp://ftp.postfix.oaktree.co.uk/pub/postfix/
+MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \
+ ftp://ftp.snoopy.net/pub/mirrors/postfix/official/ \
+ ftp://ftp.reverse.net/pub/postfix/official/ \
+ ftp://postfix.eu.org/pub/postfix/official/ \
+ ftp://ftp.sunet.se/pub/unix/mail/postfix/official/ \
+ ftp://ftp.cs.tu-berlin.de/pub/net/mail/postfix/official/ \
+ ftp://ftp.postfix.oaktree.co.uk/pub/postfix/official/
MAINTAINER= torstenb@FreeBSD.ORG
-ALL_TARGET= default "OPT=${CFLAGS}"
+ALL_TARGET= default
SCRIPTS_ENV+= MAN1="${MAN1}" MAN5="${MAN5}" MAN8="${MAN8}"
+MAKE_ENV+= "OPT=${CFLAGS}"
MAN1= mailq.1 newaliases.1 postalias.1 postcat.1 postconf.1 postdrop.1 \
postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postsuper.1 \
sendmail.1
MAN5= access.5 aliases.5 canonical.5 relocated.5 transport.5 virtual.5
MAN8= bounce.8 cleanup.8 defer.8 local.8 master.8 pickup.8 pipe.8 qmgr.8 \
- showq.8 smtp.8 smtpd.8 trivial-rewrite.8
+ showq.8 smtp.8 smtpd.8 trivial-rewrite.8 error.8
SHAREMODE= 0644
do-install:
@${MKDIR} -m 755 ${PREFIX}/etc/postfix
- @chown root:wheel ${PREFIX}/etc/postfix
+ @/usr/sbin/chown root:wheel ${PREFIX}/etc/postfix
@${INSTALL} -C -o root -g wheel -m 0644 ${WRKSRC}/conf/LICENSE \
${PREFIX}/etc/postfix/LICENSE
@for f in access main.cf master.cf ; do \
@@ -53,19 +53,17 @@ do-install:
@${INSTALL} -C -o root -g wheel -m 755 ${WRKSRC}/conf/postfix-script-sgid \
${PREFIX}/etc/postfix/postfix-script
@mkdir -p -m 0755 ${PREFIX}/libexec/postfix
- @for f in bounce cleanup fsstone local master pickup pipe \
- qmgr showq smtp smtp-sink smtp-source smtpd \
- trivial-rewrite ; do \
- ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/bin/$$f \
+ @for f in bounce cleanup error fsstone local master pickup pipe qmgr \
+ showq smtp smtpd trivial-rewrite ; do \
+ ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/libexec/$$f \
${PREFIX}/libexec/postfix/$$f ;\
done
- @for f in sendmail postalias postcat postconf postfix \
- postkick postlock postlog postmap postsuper ; do \
+ @for f in postalias postcat postconf postdrop postfix postkick \
+ postlock postlog postmap postsuper sendmail smtp-sink \
+ smtp-source ; do \
${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/bin/$$f \
${PREFIX}/sbin/$$f ;\
done
- @${INSTALL} -C -o root -g wheel -m 0555 ${WRKSRC}/bin/postdrop \
- ${PREFIX}/sbin/postdrop
@for f in ${MAN1} ; do \
${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/man/man1/$$f \
${PREFIX}/man/man1/$$f ;\