diff options
author | Tom Martin <slarti@gentoo.org> | 2004-12-14 19:15:34 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2004-12-14 19:15:34 +0000 |
commit | 5a1435cb5f03a725c62822222aee59d53318f24a (patch) | |
tree | 77c41ba3c9a7b14a4ef0f2ab208aab6c8edda124 /mail-mta | |
parent | add .keep to /var/lib/slmodem (Manifest recommit) (diff) | |
download | gentoo-2-5a1435cb5f03a725c62822222aee59d53318f24a.tar.gz gentoo-2-5a1435cb5f03a725c62822222aee59d53318f24a.tar.bz2 gentoo-2-5a1435cb5f03a725c62822222aee59d53318f24a.zip |
Stabilise on amd64, cosmetic changes to use invocation
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/msmtp/ChangeLog | 5 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.2.4.ebuild | 11 |
2 files changed, 9 insertions, 7 deletions
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog index 7529e049a54c..4d7abfd9b182 100644 --- a/mail-mta/msmtp/ChangeLog +++ b/mail-mta/msmtp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-mta/msmtp # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.19 2004/12/03 17:55:39 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.20 2004/12/14 19:15:34 slarti Exp $ + + 14 Dec 2004; Tom Martin <slarti@gentoo.org> msmtp-1.2.4.ebuild: + Stabilise on amd64, tidy use invocation slightly (cosmetic) 03 Dec 2004; Tom Martin <slarti@gentoo.org> msmtp-1.2.3.ebuild, msmtp-1.2.4.ebuild: diff --git a/mail-mta/msmtp/msmtp-1.2.4.ebuild b/mail-mta/msmtp/msmtp-1.2.4.ebuild index 558a384b3f52..33af0a8c0aff 100644 --- a/mail-mta/msmtp/msmtp-1.2.4.ebuild +++ b/mail-mta/msmtp/msmtp-1.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.2.4.ebuild,v 1.2 2004/12/03 17:55:40 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.2.4.ebuild,v 1.3 2004/12/14 19:15:34 slarti Exp $ DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" HOMEPAGE="http://msmtp.sourceforge.net/" @@ -21,10 +21,6 @@ KEYWORDS="~x86 ~ppc ~amd64" src_compile () { local myconf - use sasl \ - && myconf="${myconf} --enable-gsasl" \ - || myconf="${myconf} --disable-gsasl" - if use ssl && use gnutls ; then myconf="${myconf} --enable-ssl --with-ssl=gnutls" elif use ssl && ! use gnutls ; then @@ -33,7 +29,10 @@ src_compile () { myconf="${myconf} --disable-ssl" fi - econf ${myconf} || die "configure failed" + econf \ + $(use_enable sasl) \ + ${myconf} \ + || die "configure failed" emake || die "make failed" } |