diff options
author | 2002-05-21 06:42:59 +0000 | |
---|---|---|
committer | 2002-05-21 06:42:59 +0000 | |
commit | e607a44a35b7e18fb19ad65d32119f1a3bd95321 (patch) | |
tree | dc5216920061d09ce28cb85152a2baabddf53ccb /net-mail/postfix | |
parent | new package (diff) | |
download | gentoo-2-e607a44a35b7e18fb19ad65d32119f1a3bd95321.tar.gz gentoo-2-e607a44a35b7e18fb19ad65d32119f1a3bd95321.tar.bz2 gentoo-2-e607a44a35b7e18fb19ad65d32119f1a3bd95321.zip |
moved "sasl" support to be USE-dependent. cyrus-sasl is currently broken,
so we needed this.
Diffstat (limited to 'net-mail/postfix')
-rw-r--r-- | net-mail/postfix/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/postfix/postfix-1.1.8.ebuild | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/net-mail/postfix/ChangeLog b/net-mail/postfix/ChangeLog index 797731dee2f1..f464dff37b0e 100644 --- a/net-mail/postfix/ChangeLog +++ b/net-mail/postfix/ChangeLog @@ -1,6 +1,11 @@ # 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.16 2002/05/14 03:49:25 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.17 2002/05/21 06:42:59 drobbins Exp $ + + 20 May 2002; Daniel Robbins <drobbins@gentoo.org> postfix-1.1.8.ebuild: + made "sasl" a USE var (disabled by default) since this seems most appropriate + and since cyrus-sasl appears to be broken if you merge it on a fresh system. + Postfix should work again. *postfix-1.1.8 (13 May 2002) diff --git a/net-mail/postfix/postfix-1.1.8.ebuild b/net-mail/postfix/postfix-1.1.8.ebuild index 392d68a86fb7..e3d1e5b095b2 100644 --- a/net-mail/postfix/postfix-1.1.8.ebuild +++ b/net-mail/postfix/postfix-1.1.8.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.8.ebuild,v 1.1 2002/05/14 03:49:25 woodchip Exp $ +# /space/gentoo/cvsroot/gentoo-x86/net-mail/postfix/postfix-1.1.8.ebuild,v 1.1 2002/05/14 03:49:25 woodchip Exp DESCRIPTION="A fast and secure drop-in replacement for sendmail" HOMEPAGE="http://www.postfix.org/" @@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/official/${P}.tar.gz PROVIDE="virtual/mta" DEPEND=">=sys-libs/db-3.2 >=dev-libs/libpcre-3.4 - >=dev-libs/cyrus-sasl-1.5.27 + sasl? ( >=dev-libs/cyrus-sasl-1.5.27 ) ldap? ( >=net-nds/openldap-1.2 ) mysql? ( >=dev-db/mysql-3.23.28 ) ssl? ( >=dev-libs/openssl-0.9.6d )" @@ -62,8 +62,13 @@ src_unpack() { use pam && AUXLIBS="${AUXLIBS} -lpam" # stuff we always want... - CCARGS="${CCARGS} -I/usr/include -DHAS_PCRE -DUSE_SASL_AUTH" - AUXLIBS="${AUXLIBS} -L/usr/lib -lpcre -lsasl -ldl -lcrypt" + CCARGS="${CCARGS} -I/usr/include -DHAS_PCRE" + AUXLIBS="${AUXLIBS} -L/usr/lib -lpcre -ldl -lcrypt" + if [ "`use sasl`" ] + then + AUXLIBS="${AUXLIBS} -lsasl" + CCARGS="${CCARGS} -DUSE_SASL_AUTH" + fi DEBUG="" cd ${S} |