summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2003-01-19 23:18:07 +0000
committerNick Hadaway <raker@gentoo.org>2003-01-19 23:18:07 +0000
commitf599d6c482244b4f1aa8f04eb79ad365c717e7f1 (patch)
tree30068648ba70174a84109df316f97883f6f1be82 /net-mail
parentchanges to the openoffice wrapper script (diff)
downloadgentoo-2-f599d6c482244b4f1aa8f04eb79ad365c717e7f1.tar.gz
gentoo-2-f599d6c482244b4f1aa8f04eb79ad365c717e7f1.tar.bz2
gentoo-2-f599d6c482244b4f1aa8f04eb79ad365c717e7f1.zip
Added ipv6 support.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/postfix/ChangeLog3
-rw-r--r--net-mail/postfix/files/digest-postfix-2.0.21
-rw-r--r--net-mail/postfix/postfix-2.0.2.ebuild12
3 files changed, 12 insertions, 4 deletions
diff --git a/net-mail/postfix/ChangeLog b/net-mail/postfix/ChangeLog
index b1d66c7288cf..ddf09b0ecff3 100644
--- a/net-mail/postfix/ChangeLog
+++ b/net-mail/postfix/ChangeLog
@@ -1,12 +1,13 @@
# ChangeLog for net-mail/postfix
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.45 2003/01/19 23:04:18 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.46 2003/01/19 23:18:07 raker Exp $
*postfix-2.0.2 (19 Jan 2003)
19 Jan 2003; Nick Hadaway <raker@gentoo.org> postfix-2.0.2.ebuild,
files/digest-postfix-2.0.2 :
Version bump. Re-incorporated tls functionality. IPV6 is next.
+ 10 minutes later... ipv6 added. :)
*postfix-2.0.0 (23 Dec 2002)
diff --git a/net-mail/postfix/files/digest-postfix-2.0.2 b/net-mail/postfix/files/digest-postfix-2.0.2
index f2ba7afe3520..afffac76e025 100644
--- a/net-mail/postfix/files/digest-postfix-2.0.2
+++ b/net-mail/postfix/files/digest-postfix-2.0.2
@@ -1,2 +1,3 @@
MD5 b64114648412cb89756b96dce7f59948 postfix-2.0.2.tar.gz 1339432
MD5 420470e2bd0225650783a60374435108 pfixtls-0.8.13-2.0.1-0.9.7.tar.gz 225806
+MD5 f3c82b0199d3c91b2ac9a8d46a465cca tls+ipv6-1.12-pf-2.0.2.patch.gz 95506
diff --git a/net-mail/postfix/postfix-2.0.2.ebuild b/net-mail/postfix/postfix-2.0.2.ebuild
index f4574ef95860..8ee2ee43d54f 100644
--- a/net-mail/postfix/postfix-2.0.2.ebuild
+++ b/net-mail/postfix/postfix-2.0.2.ebuild
@@ -1,13 +1,15 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.2.ebuild,v 1.1 2003/01/19 23:04:18 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.2.ebuild,v 1.2 2003/01/19 23:18:07 raker Exp $
TLS_P="pfixtls-0.8.13-2.0.1-0.9.7"
+IPV6_P="tls+ipv6-1.12-pf-2.0.2"
IUSE="ssl mysql sasl ldap ipv6"
DESCRIPTION="A fast and secure drop-in replacement for sendmail"
HOMEPAGE="http://www.postfix.org"
SRC_URI="ftp://ftp.pca.dfn.de/pub/tools/net/postfix/official/${P}.tar.gz
- ssl? ( ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/${TLS_P}.tar.gz )"
+ ssl? ( ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/${TLS_P}.tar.gz )
+ ipv6? ( ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.12/${IPV6_P}.patch.gz )"
LICENSE="IPL-1"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc"
@@ -42,7 +44,11 @@ pkg_setup() {
src_unpack() {
unpack ${A}
cd ${S}
- if [ "`use ssl`" ]; then
+ if [ "`use ssl`" ] && [ "`use ipv6`" ]; then
+ epatch ${WORKDIR}/${IPV6_P}.patch || die
+ CCARGS="${CCARGS} -DHAS_SSL"
+ AUXLIBS="${AUXLIBS} -lssl -lcrypto"
+ elif [ "`use ssl`" ]; then
epatch ${WORKDIR}/${TLS_P}/pfixtls.diff || die
CCARGS="${CCARGS} -DHAS_SSL"
AUXLIBS="${AUXLIBS} -lssl -lcrypto"