diff options
author | 2009-10-22 18:35:57 +0000 | |
---|---|---|
committer | 2009-10-22 18:35:57 +0000 | |
commit | 56de83ce37c1a945607e298f0bc84ca1ce60e9ec (patch) | |
tree | ddc562f1e8c5e5804f13ec804a038f575e86c22a /mail-client/mutt/mutt-1.5.20-r6.ebuild | |
parent | Remove old ebuild (diff) | |
download | gentoo-2-56de83ce37c1a945607e298f0bc84ca1ce60e9ec.tar.gz gentoo-2-56de83ce37c1a945607e298f0bc84ca1ce60e9ec.tar.bz2 gentoo-2-56de83ce37c1a945607e298f0bc84ca1ce60e9ec.zip |
Revert addition of tokyocabinet USE-flag to -r6, add it to -r7 and drop keywords for arches that don't have tokyocabinet keyworded, bug #290154
(Portage version: 2.2.00.14701-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'mail-client/mutt/mutt-1.5.20-r6.ebuild')
-rw-r--r-- | mail-client/mutt/mutt-1.5.20-r6.ebuild | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/mail-client/mutt/mutt-1.5.20-r6.ebuild b/mail-client/mutt/mutt-1.5.20-r6.ebuild index 1e59ff8d9d5c..5a611c2b4047 100644 --- a/mail-client/mutt/mutt-1.5.20-r6.ebuild +++ b/mail-client/mutt/mutt-1.5.20-r6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.20-r6.ebuild,v 1.2 2009/10/20 17:55:10 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.20-r6.ebuild,v 1.3 2009/10/22 18:35:57 grobian Exp $ inherit eutils flag-o-matic autotools @@ -22,18 +22,15 @@ SRC_URI="ftp://ftp.mutt.org/mutt/devel/${P}.tar.gz sidebar? ( http://www.lunar-linux.org/~tchan/mutt/${SIDEBAR_PATCH_N} )" -IUSE="berkdb crypt debug doc gdbm gnutls gpg idn imap mbox nls nntp pop qdbm sasl sidebar smime smtp ssl tokyocabinet vanilla" +IUSE="berkdb crypt debug doc gdbm gnutls gpg idn imap mbox nls nntp pop qdbm sasl sidebar smime smtp ssl vanilla" SLOT="0" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=">=sys-libs/ncurses-5.2 - tokyocabinet? ( dev-db/tokyocabinet ) - !tokyocabinet? ( - qdbm? ( dev-db/qdbm ) - !qdbm? ( - gdbm? ( sys-libs/gdbm ) - !gdbm? ( berkdb? ( >=sys-libs/db-4 ) ) - ) + qdbm? ( dev-db/qdbm ) + !qdbm? ( + gdbm? ( sys-libs/gdbm ) + !gdbm? ( berkdb? ( >=sys-libs/db-4 ) ) ) imap? ( gnutls? ( >=net-libs/gnutls-1.0.17 ) @@ -169,21 +166,18 @@ src_compile() { # mutt prioritizes gdbm over bdb, so we will too. # hcache feature requires at least one database is in USE. - if use tokyocabinet; then - myconf="${myconf} --enable-hcache \ - --with-tokyocabinet --without-qdbm --without-gdbm --without-bdb" - elif use qdbm; then + if use qdbm; then myconf="${myconf} --enable-hcache \ - --without-tokyocabinet --with-qdbm --without-gdbm --without-bdb" + --with-qdbm --without-gdbm --without-bdb" elif use gdbm ; then myconf="${myconf} --enable-hcache \ - --without-tokyocabinet --without-qdbm --with-gdbm --without-bdb" + --without-qdbm --with-gdbm --without-bdb" elif use berkdb; then myconf="${myconf} --enable-hcache \ - --without-tokyocabinet --without-qdbm --without-gdbm --with-bdb" + --without-gdbm --without-qdbm --with-bdb" else myconf="${myconf} --disable-hcache \ - --without-tokyocabinet --without-qdbm --without-gdbm --without-bdb" + --without-qdbm --without-gdbm --without-bdb" fi # there's no need for gnutls, ssl or sasl without socket support |