summaryrefslogtreecommitdiff
path: root/mail/postfix1
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2003-06-02 15:32:39 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2003-06-02 15:32:39 +0000
commit00674940cd2c84a88f2f5ee61927787c160fecf8 (patch)
tree9b9728318daa5f90d8ca0f9d56300111fcde648d /mail/postfix1
parentUpdate to officially distributed from SourceForge huskybase 1.0. (diff)
- 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>
Notes
Notes: svn path=/head/; revision=82015
Diffstat (limited to 'mail/postfix1')
-rw-r--r--mail/postfix1/Makefile2
-rw-r--r--mail/postfix1/distinfo2
-rw-r--r--mail/postfix1/scripts/configure.postfix15
3 files changed, 15 insertions, 4 deletions
diff --git a/mail/postfix1/Makefile b/mail/postfix1/Makefile
index 63539a865545..56074aaf7c59 100644
--- a/mail/postfix1/Makefile
+++ b/mail/postfix1/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/postfix1/distinfo b/mail/postfix1/distinfo
index 61274400cc23..1fcb71d4159e 100644
--- a/mail/postfix1/distinfo
+++ b/mail/postfix1/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/postfix1/scripts/configure.postfix b/mail/postfix1/scripts/configure.postfix
index d0de8ebb1990..a4dd6d688d8f 100644
--- a/mail/postfix1/scripts/configure.postfix
+++ b/mail/postfix1/scripts/configure.postfix
@@ -1,5 +1,5 @@
#!/bin/sh
-# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.33 2003-05-12 21:02:53 obraun Exp $
+# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/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"