diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-08-12 02:31:17 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-08-12 02:31:17 +0000 |
commit | 69f0362c4b787e9a4fab555f87bd384e84871173 (patch) | |
tree | 4a253ad5536103246a17a74d0cf71fcd26571673 /mail-client/muttng | |
parent | Add support for mono by Ugo Riboni #101761. (diff) | |
download | gentoo-2-69f0362c4b787e9a4fab555f87bd384e84871173.tar.gz gentoo-2-69f0362c4b787e9a4fab555f87bd384e84871173.tar.bz2 gentoo-2-69f0362c4b787e9a4fab555f87bd384e84871173.zip |
Disable building with libesmtp since it doesn't link #102129
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'mail-client/muttng')
-rw-r--r-- | mail-client/muttng/ChangeLog | 5 | ||||
-rw-r--r-- | mail-client/muttng/muttng-20050809.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/mail-client/muttng/ChangeLog b/mail-client/muttng/ChangeLog index 2d81f86a4a1a..250b898e3b18 100644 --- a/mail-client/muttng/ChangeLog +++ b/mail-client/muttng/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-client/muttng # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/muttng/ChangeLog,v 1.9 2005/08/11 23:32:27 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/muttng/ChangeLog,v 1.10 2005/08/12 02:31:17 agriffis Exp $ + + 12 Aug 2005; Aron Griffis <agriffis@gentoo.org> muttng-20050809.ebuild: + Disable building with libesmtp since it doesn't link #102129 11 Aug 2005; Aron Griffis <agriffis@gentoo.org> muttng-20050809-r1.ebuild: Don't enable sasl unless pop or imap is in USE, same as gnutls or ssl in diff --git a/mail-client/muttng/muttng-20050809.ebuild b/mail-client/muttng/muttng-20050809.ebuild index 75faf525b412..866fd1e008f7 100644 --- a/mail-client/muttng/muttng-20050809.ebuild +++ b/mail-client/muttng/muttng-20050809.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/muttng/muttng-20050809.ebuild,v 1.3 2005/08/11 00:13:18 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/muttng/muttng-20050809.ebuild,v 1.4 2005/08/12 02:31:17 agriffis Exp $ inherit eutils DESCRIPTION="mutt-ng is the next generation of mutt." HOMEPAGE="http://www.muttng.org/" SRC_URI="http://nion.modprobe.de/mutt-ng/snapshots/${P}.tar.gz" -IUSE="berkdb crypt debug gnutls gdbm gpgme idn imap mbox nls nntp pop qdbm sasl slang smtp ssl" +IUSE="berkdb crypt debug gnutls gdbm gpgme idn imap mbox nls nntp pop qdbm sasl slang ssl" # smtp SLOT="0" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~sparc" @@ -19,7 +19,6 @@ RDEPEND="nls? ( sys-devel/gettext ) gdbm? ( sys-libs/gdbm ) !gdbm? ( berkdb? ( >=sys-libs/db-4 ) ) ) - smtp? ( net-libs/libesmtp ) slang? ( >=sys-libs/slang-1.4.2 ) imap? ( gnutls? ( >=net-libs/gnutls-1.0.17 ) @@ -31,6 +30,7 @@ RDEPEND="nls? ( sys-devel/gettext ) ) gpgme? ( >=app-crypt/gpgme-0.9.0 ) sasl? ( >=dev-libs/cyrus-sasl-2 )" +# smtp? ( net-libs/libesmtp ) DEPEND="${RDEPEND} sys-devel/automake >=sys-devel/autoconf-2.5 @@ -59,8 +59,8 @@ src_compile() { $(use_enable crypt pgp) \ $(use_enable nntp) \ $(use_enable debug) \ - $(use_with smtp libesmtp) \ $(use_with idn) \ + --without-libesmtp \ --enable-compressed \ --sysconfdir=/etc/muttng \ --with-docdir=/usr/share/doc/muttng-${PVR} \ @@ -69,6 +69,7 @@ src_compile() { --enable-flock \ --with-mixmaster \ --enable-external-dotlock" +# $(use_with smtp libesmtp) \ # muttng prioritizes qdbm over gdbm, so we will too. # hcache feature requires at least one database is in USE. |