diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-03 19:34:49 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-03 19:34:49 +0000 |
commit | 23b2b888719e1285eeeefaa08507189d593b8e2e (patch) | |
tree | c5cbb48844516a024345a3ef7b3604259e979981 /mail-mta | |
parent | Updated glib dependency (Manifest recommit) (diff) | |
download | gentoo-2-23b2b888719e1285eeeefaa08507189d593b8e2e.tar.gz gentoo-2-23b2b888719e1285eeeefaa08507189d593b8e2e.tar.bz2 gentoo-2-23b2b888719e1285eeeefaa08507189d593b8e2e.zip |
fix use invocation
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/msmtp/ChangeLog | 5 | ||||
-rw-r--r-- | mail-mta/msmtp/msmtp-1.2.1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/mail-mta/msmtp/ChangeLog b/mail-mta/msmtp/ChangeLog index 7ad292ac9273..edd1d9ed195e 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.9 2004/08/01 20:40:10 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/ChangeLog,v 1.10 2004/08/03 19:34:49 mr_bones_ Exp $ + + 03 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> msmtp-1.2.1.ebuild: + fix use invocation *msmtp-1.2.1 (01 Aug 2004) diff --git a/mail-mta/msmtp/msmtp-1.2.1.ebuild b/mail-mta/msmtp/msmtp-1.2.1.ebuild index 190413c3a243..e8eb7d3cf4ef 100644 --- a/mail-mta/msmtp/msmtp-1.2.1.ebuild +++ b/mail-mta/msmtp/msmtp-1.2.1.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.1.ebuild,v 1.1 2004/08/01 20:40:10 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.2.1.ebuild,v 1.2 2004/08/03 19:34:49 mr_bones_ Exp $ DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt" HOMEPAGE="http://msmtp.sourceforge.net/" @@ -21,9 +21,9 @@ src_compile () { && myconf="${myconf} --enable-gsasl" \ || myconf="${myconf} --disable-gsasl" - if [[ `use ssl` && `use gnutls` ]]; then + if use ssl && use gnutls ; then myconf="${myconf} --enable-ssl --with-ssl=gnutls" - elif [[ `use ssl` && !`use gnutls` ]]; then + elif use ssl && ! use gnutls ; then myconf="${myconf} --enable-ssl --with-ssl=openssl" else myconf="${myconf} --disable-ssl" @@ -36,7 +36,7 @@ src_compile () { src_install () { einstall || die "install failed" - if [[ !`use ssl` && `use gnutls` ]]; then + if ! use ssl && use gnutls ; then ewarn " " ewarn "gnutls support was not enabled (even though it was in your USE flags) as" ewarn "ssl was not in them also." |