diff options
author | 2003-06-13 22:45:00 +0000 | |
---|---|---|
committer | 2003-06-13 22:45:00 +0000 | |
commit | b30c1c6cdf9a35f1c414b61d9f8c3529e223aef5 (patch) | |
tree | 459920ccd410a7622d6b6419b56152bd3de83ed9 /net-mail/postfix | |
parent | updated pyogg pyvorbis deps (diff) | |
download | gentoo-2-b30c1c6cdf9a35f1c414b61d9f8c3529e223aef5.tar.gz gentoo-2-b30c1c6cdf9a35f1c414b61d9f8c3529e223aef5.tar.bz2 gentoo-2-b30c1c6cdf9a35f1c414b61d9f8c3529e223aef5.zip |
Add another check for that bug...
Diffstat (limited to 'net-mail/postfix')
-rw-r--r-- | net-mail/postfix/Manifest | 4 | ||||
-rw-r--r-- | net-mail/postfix/postfix-2.0.11.ebuild | 12 | ||||
-rw-r--r-- | net-mail/postfix/postfix-2.0.12.ebuild | 14 |
3 files changed, 25 insertions, 5 deletions
diff --git a/net-mail/postfix/Manifest b/net-mail/postfix/Manifest index ff867457acd3..b3c6cb16725d 100644 --- a/net-mail/postfix/Manifest +++ b/net-mail/postfix/Manifest @@ -1,9 +1,9 @@ MD5 e6a3d41964c3f27d3fc79b241df1b13d postfix-2.0.10-r1.ebuild 5394 MD5 ead334460917ae4879673b31d59f46e8 postfix-2.0.9.ebuild 5471 MD5 76726846989c0b6a5fc643d06b804e45 postfix-1.1.11.20020917-r1.ebuild 4945 -MD5 39a6b30150cea7daa0e8862af5eadcd9 postfix-2.0.12.ebuild 5773 +MD5 c49a1772a81a27dba0c02daae56d31ad postfix-2.0.12.ebuild 6025 MD5 c78d84e8f12a70f4e663662315c2fa7d ChangeLog 14842 -MD5 ff4665011d7801bf700c126684a7cf76 postfix-2.0.11.ebuild 5737 +MD5 9e1d40685d31e1afe455ada60b18cae9 postfix-2.0.11.ebuild 6026 MD5 c79b19f95cb38b8802966d7efb54bc60 postfix-1.1.11.20020917.ebuild 4924 MD5 a3eadfcfa0bf6f88ccff41e2d065745b files/postfix-2.0.8_patch.patch 552 MD5 6775371821db3139dd2470c794a1e01f files/digest-postfix-1.1.11.20020917-r1 166 diff --git a/net-mail/postfix/postfix-2.0.11.ebuild b/net-mail/postfix/postfix-2.0.11.ebuild index 5380136c9a0c..b5671b72bc29 100644 --- a/net-mail/postfix/postfix-2.0.11.ebuild +++ b/net-mail/postfix/postfix-2.0.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 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.11.ebuild,v 1.4 2003/06/13 12:18:14 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.11.ebuild,v 1.5 2003/06/13 22:44:52 lostlogic Exp $ IUSE="ssl mysql sasl ldap ipv6 maildir mbox" @@ -65,6 +65,16 @@ pkg_setup() { mkdir -p ${ROOT}/etc/sasl2 fi + # This shouldn't be necessary, but apparently + # Without it things can still get messy. + if [ -L ${ROOT}/etc/sasl2/smtpd.conf ] + then + rm ${ROOT}/etc/sasl2/smtpd.conf + fi + + # If both files exist, make sure that we + # preserve a copy of each with the ._cfg + # system if [ -f ${ROOT}/etc/sasl2/smtpd.conf ] then mv ${ROOT}/usr/lib/sasl2/smtpd.conf \ diff --git a/net-mail/postfix/postfix-2.0.12.ebuild b/net-mail/postfix/postfix-2.0.12.ebuild index 9a8c6401b15d..5600c02f2ca4 100644 --- a/net-mail/postfix/postfix-2.0.12.ebuild +++ b/net-mail/postfix/postfix-2.0.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 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.12.ebuild,v 1.1 2003/06/13 22:36:56 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-2.0.12.ebuild,v 1.2 2003/06/13 22:44:52 lostlogic Exp $ IUSE="ssl mysql sasl ldap ipv6 maildir mbox" @@ -65,7 +65,17 @@ pkg_setup() { mkdir -p ${ROOT}/etc/sasl2 fi - if [ -f ${ROOT}/etc/sasl2/smtpd.conf -o -L ${ROOT}/etc/sasl2/smtpd.conf ] + # This shouldn't be necessary, but apparently + # Without it things can still get messy. + if [ -L ${ROOT}/etc/sasl2/smtpd.conf ] + then + rm ${ROOT}/etc/sasl2/smtpd.conf + fi + + # If both files exist, make sure that we + # preserve a copy of each with the ._cfg + # system + if [ -f ${ROOT}/etc/sasl2/smtpd.conf ] then mv ${ROOT}/usr/lib/sasl2/smtpd.conf \ ${ROOT}/etc/sasl2/._cfg0000_smtpd.conf |