diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-01-18 10:31:24 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-01-18 10:31:24 +0000 |
commit | 566241df75d3730ca154f4c475c60b74f1de9008 (patch) | |
tree | aa779bcbc19f76948c6d2a738eb66c5f6c699bca /mail-client/balsa | |
parent | Manifest (diff) | |
download | gentoo-2-566241df75d3730ca154f4c475c60b74f1de9008.tar.gz gentoo-2-566241df75d3730ca154f4c475c60b74f1de9008.tar.bz2 gentoo-2-566241df75d3730ca154f4c475c60b74f1de9008.zip |
fix use libnotify behavior (bug #199583),
remove useless dependency on libtool and move gettext to DEPEND
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'mail-client/balsa')
-rw-r--r-- | mail-client/balsa/ChangeLog | 6 | ||||
-rw-r--r-- | mail-client/balsa/balsa-2.3.22.ebuild | 17 |
2 files changed, 11 insertions, 12 deletions
diff --git a/mail-client/balsa/ChangeLog b/mail-client/balsa/ChangeLog index b092b289ea92..0fb929623417 100644 --- a/mail-client/balsa/ChangeLog +++ b/mail-client/balsa/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-client/balsa # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.59 2008/01/03 22:54:02 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.60 2008/01/18 10:31:24 eva Exp $ + + 18 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org> balsa-2.3.22.ebuild: + fix use libnotify behavior (bug #199583), + remove useless dependency on libtool and move gettext to DEPEND *balsa-2.3.22 (03 Jan 2008) diff --git a/mail-client/balsa/balsa-2.3.22.ebuild b/mail-client/balsa/balsa-2.3.22.ebuild index b3fb9b671ecb..7374d2ef81e2 100644 --- a/mail-client/balsa/balsa-2.3.22.ebuild +++ b/mail-client/balsa/balsa-2.3.22.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.3.22.ebuild,v 1.2 2008/01/04 07:19:03 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.3.22.ebuild,v 1.3 2008/01/18 10:31:24 eva Exp $ inherit gnome2 @@ -21,8 +21,6 @@ RDEPEND=">=dev-libs/glib-2.0 >=gnome-base/orbit-2 >=gnome-base/libbonobo-2.0 x11-themes/hicolor-icon-theme - sys-devel/libtool - sys-devel/gettext net-mail/mailbase crypt? ( >=app-crypt/gpgme-1.0 ) >=gnome-base/libgnome-2.0 @@ -43,6 +41,7 @@ RDEPEND=">=dev-libs/glib-2.0 DEPEND="${RDEPEND} dev-util/intltool dev-util/pkgconfig + sys-devel/gettext >=app-text/scrollkeeper-0.1.4 doc? ( dev-util/gtk-doc )" @@ -52,12 +51,6 @@ pkg_setup() { # threads are currently broken with gpgme G2CONF="${G2CONF} --disable-threads" - if use xface ; then - G2CONF="${G2CONF} --with-compface" - else - G2CONF="${G2CONF} --without-compface" - fi - if use crypt ; then G2CONF="${G2CONF} --with-gpgme=gpgme-config" else @@ -77,11 +70,13 @@ pkg_setup() { fi G2CONF="${G2CONF} - $(use_with rubrica) $(use_with gtkspell) $(use_with kerberos gss) $(use_with ldap) + $(use_with libnotify) $(use_enable pcre) + $(use_with rubrica) $(use_with sqlite) - $(use_with ssl)" + $(use_with ssl) + $(use_with xface compface)" } |