diff options
author | naddy <naddy@FreeBSD.org> | 2003-06-02 23:32:39 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2003-06-02 23:32:39 +0800 |
commit | afc609328d2535bba7e97facb6e42a572102dba6 (patch) | |
tree | 94a318f54293b8200065ac2f5ecd5eb7c0d27cf7 /mail/postfix27 | |
parent | 6df60039e3cd5e91464f3d5be7c2f46d0afc0b3a (diff) | |
download | freebsd-ports-gnome-afc609328d2535bba7e97facb6e42a572102dba6.tar.gz freebsd-ports-gnome-afc609328d2535bba7e97facb6e42a572102dba6.tar.zst freebsd-ports-gnome-afc609328d2535bba7e97facb6e42a572102dba6.zip |
- Update postfix to 2.0.10 release
- Add option for using Postgres 7.2 in addition to 7.3
PR: 52620
Submitted by: Vivek Khera <khera@kcilink.com>
Diffstat (limited to 'mail/postfix27')
-rw-r--r-- | mail/postfix27/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix27/distinfo | 2 | ||||
-rw-r--r-- | mail/postfix27/scripts/configure.postfix | 15 |
3 files changed, 15 insertions, 4 deletions
diff --git a/mail/postfix27/Makefile b/mail/postfix27/Makefile index 63539a865545..56074aaf7c59 100644 --- a/mail/postfix27/Makefile +++ b/mail/postfix27/Makefile @@ -15,7 +15,7 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSION= 2.0.9 +PORTVERSION= 2.0.10 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ diff --git a/mail/postfix27/distinfo b/mail/postfix27/distinfo index 61274400cc23..1fcb71d4159e 100644 --- a/mail/postfix27/distinfo +++ b/mail/postfix27/distinfo @@ -1,4 +1,4 @@ -MD5 (postfix/postfix-2.0.9.tar.gz) = c1ad12edfa19c23579b251078c464651 +MD5 (postfix/postfix-2.0.10.tar.gz) = 80ebfc319640a5dec2fedf4945561b88 MD5 (postfix/tls+ipv6-1.14-pf-2.0.9.patch.gz) = 6c55e142fc4b6ebf5e5ee707574446ba MD5 (postfix/ipv6-1.14-pf-2.0.9.patch.gz) = a449622b4a822a726065c8f2a960bbad MD5 (postfix/pfixtls-0.8.13-2.0.9-0.9.7b.tar.gz) = f34a4b7e55a02675d04358e036f1362d diff --git a/mail/postfix27/scripts/configure.postfix b/mail/postfix27/scripts/configure.postfix index c0c7c7c91366..0e67ed320d25 100644 --- a/mail/postfix27/scripts/configure.postfix +++ b/mail/postfix27/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.33 2003-05-12 21:02:53 obraun Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.34 2003-06-02 15:32:39 naddy Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -29,7 +29,8 @@ DB3 "Berkeley DB3 (required if SASL also built with DB3)" "$status_DB3" \ DB40 "Berkeley DB4.0 (required if SASL also built with DB4.0)" "$status_DB40" \ DB41 "Berkeley DB4.1 (required if SASL also built with DB4.1)" "$status_DB41" \ MySQL "MySQL map lookups" "$status_MySQL" \ -PgSQL "PostgreSQL map lookups" "$status_PgSQL" \ +PgSQL "PostgreSQL v7.3 map lookups" "$status_PgSQL" \ +PgSQL72 "PostgreSQL v7.2 map lookups" "$status_PgSQL72" \ OpenLDAP12 "OpenLDAP 1.2 map lookups" "$status_OpenLDAP" \ OpenLDAP20 "OpenLDAP 2.0 map lookups" "$status_OpenLDAP" \ OpenLDAP21 "OpenLDAP 2.1 map lookups" "$status_OpenLDAP" \ @@ -170,6 +171,16 @@ while [ "$1" ]; do echo "PATCH_DIST_STRIP= -p1" echo "PGSQL_SUFFIX= +pgsql" ;; + PgSQL72) + echo "POSTGRESQL_PORT?= databases/postgresql72" + echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/\${POSTGRESQL_PORT}" + echo "POSTFIX_CCARGS+= -DHAS_PGSQL -I\${LOCALBASE}/include -I\${LOCALBASE}/pgsql/include" + echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt" + echo "PATCH_SITES+= http://mat.cc/postfix/" + echo "PATCHFILES+= postfix-pg.postfix-2.0.0.2.patch" + echo "PATCH_DIST_STRIP= -p1" + echo "PGSQL_SUFFIX= +pgsql" + ;; OpenLDAP12) echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap12" echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" |