diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-15 22:53:00 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-15 22:53:00 +0000 |
commit | 8106be731bcab055e386880c51ac31ed7c2aa26e (patch) | |
tree | 54efec01b2183ca594407a90cf75568fea90de38 | |
parent | fixor email (diff) | |
download | historical-8106be731bcab055e386880c51ac31ed7c2aa26e.tar.gz historical-8106be731bcab055e386880c51ac31ed7c2aa26e.tar.bz2 historical-8106be731bcab055e386880c51ac31ed7c2aa26e.zip |
Updated incorrect coding syntax for the tls+ipv6 patch.
-rw-r--r-- | net-mail/postfix/ChangeLog | 3 | ||||
-rw-r--r-- | net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/net-mail/postfix/ChangeLog b/net-mail/postfix/ChangeLog index c03c718842be..5e1521487cc9 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.28 2002/08/15 22:38:43 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.29 2002/08/15 22:53:00 raker Exp $ *postfix-1.1.11.200206013-r1 (13 Aug 2002) 15 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11.20020613-r1.ebuild : Updated CCARGS and AUXLIBS variables for a proper TLS enabled postfix. + Fixed a syntax error with the tls+ipv6 patch. 13 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11.20020613-r1.ebuild, files/digest-postfix-1.1.11.20020613-r1 : diff --git a/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild b/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild index 2677cc09b4d4..151e0b857ae5 100644 --- a/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild +++ b/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild,v 1.2 2002/08/15 22:38:43 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-1.1.11.20020613-r1.ebuild,v 1.3 2002/08/15 22:53:00 raker Exp $ DESCRIPTION="A fast and secure drop-in replacement for sendmail" HOMEPAGE="http://www.postfix.org/" @@ -15,7 +15,7 @@ DEPEND=">=sys-libs/db-3.2 sasl? ( >=dev-libs/cyrus-sasl-2.1.6 ) ldap? ( >=net-nds/openldap-1.2 ) mysql? ( >=dev-db/mysql-3.23.28 ) - ssl? ( >=dev-libs/openssl-0.9.6d ) + ssl? ( >=dev-libs/openssl-0.9.6e ) pam? ( sys-libs/pam )" RDEPEND="${DEPEND} >=net-mail/mailbase-0.00 @@ -33,7 +33,7 @@ pkg_setup() { src_unpack() { unpack ${A} - if [ "`use ipv6`" || "`use ssl`" ] + if [ "`use ipv6`" ] || [ "`use ssl`" ] then cd ${S} patch -p1 < ${FILESDIR}/tls+ipv6.diff || die |