summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2002-05-14 19:36:44 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2002-05-14 19:36:44 +0000
commit3a0eae7c74e13d2ecb982b3c8f0e3fc445d0ff5b (patch)
treee756f2485d27a7b4dae4f54dadca215d9d00e83f /mail
parentAllow libiconv to be built by a non-root user. (diff)
Update to 1.1.9-20020513
Make SASL and PCRE libs dynamically linked PR: 38079 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=59094
Diffstat (limited to 'mail')
-rw-r--r--mail/postfix-current/Makefile2
-rw-r--r--mail/postfix-current/distinfo5
-rw-r--r--mail/postfix-current/scripts/configure.postfix10
3 files changed, 8 insertions, 9 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile
index b30c1844f082..ad1429a54daf 100644
--- a/mail/postfix-current/Makefile
+++ b/mail/postfix-current/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= postfix
-PORTVERSION= 1.1.8-20020505
+PORTVERSION= 1.1.9-20020513
PORTEPOCH= 1
CATEGORIES= mail ipv6
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \
diff --git a/mail/postfix-current/distinfo b/mail/postfix-current/distinfo
index c0599cb123ed..623db86c4824 100644
--- a/mail/postfix-current/distinfo
+++ b/mail/postfix-current/distinfo
@@ -1,4 +1,3 @@
-MD5 (postfix/postfix-1.1.8-20020505.tar.gz) = 7f953cfb70c324acf963049c9ae6cba2
-MD5 (postfix/pfixtls-0.8.7-1.1.7-0.9.6c.tar.gz) = a00656e4e7fd1e4827c3e805799d2359
-MD5 (postfix/postfix-1.1.7+ipv6.patch.gz) = 9564e8e1e3ddfb885bb1ffaaf75c670b
+MD5 (postfix/postfix-1.1.9-20020513.tar.gz) = 1a31de6ca41c3801c5dd1d03da2409ce
+MD5 (postfix/postfix-1.1.9+ipv6.patch.gz) = 6ac3b3e201d2d31d28542a3b5ad1d096
MD5 (postfix/postfix-pg.postfix-1.1.8.patch) = e0f4d910a6d6648d9b48e2244f2764ba
diff --git a/mail/postfix-current/scripts/configure.postfix b/mail/postfix-current/scripts/configure.postfix
index b0b8f9b607e9..4b13bd60ce29 100644
--- a/mail/postfix-current/scripts/configure.postfix
+++ b/mail/postfix-current/scripts/configure.postfix
@@ -53,16 +53,16 @@ SUB_TEST="@comment "
while [ "$1" ]; do
case $1 in
\"PCRE\")
- echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libpcre.a:\${PORTSDIR}/devel/pcre"
+ echo "LIB_DEPENDS+= pcre.0:\${PORTSDIR}/devel/pcre"
echo "POSTFIX_CCARGS+= -DHAS_PCRE -I\${LOCALBASE}/include"
- echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libpcre.a"
+ echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -lpcre"
echo "PCRE_SUFFIX= +pcre"
SUB_PCRE=""
;;
\"SASL\")
- echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libsasl.a:\${PORTSDIR}/security/cyrus-sasl"
+ echo "LIB_DEPENDS+= sasl.8:\${PORTSDIR}/security/cyrus-sasl"
echo "POSTFIX_CCARGS+= -DUSE_SASL_AUTH -I\${LOCALBASE}/include"
- echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/libsasl.a -lpam -lcrypt"
+ echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -lsasl -lpam -lcrypt"
echo "SASL_SUFFIX= +sasl"
if [ -f ${PREFIX}/lib/libsasl.a ]; then
if nm ${PREFIX}/lib/libsasl.a | grep -wq "mysql_verify_password"; then
@@ -131,7 +131,7 @@ while [ "$1" ]; do
exit 1
fi
echo "PATCH_SITES+= http://www.cyber-magic.org/~taka/misc/"
- echo "PATCHFILES+= postfix-1.1.7+ipv6.patch.gz"
+ echo "PATCHFILES+= postfix-1.1.9+ipv6.patch.gz"
echo "PATCH_DIST_STRIP= -p1"
echo "IPv6_SUFFIX= +ipv6"
echo ""