diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-01-22 00:04:56 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-01-22 00:04:56 +0000 |
commit | 6e15bc90ab003aada2110fb3c6bee54e6d9dbb5e (patch) | |
tree | f6d9d6a6e1318d479abbc8f8afb3e741fb29444c /mail-client | |
parent | Version bump. (diff) | |
download | gentoo-2-6e15bc90ab003aada2110fb3c6bee54e6d9dbb5e.tar.gz gentoo-2-6e15bc90ab003aada2110fb3c6bee54e6d9dbb5e.tar.bz2 gentoo-2-6e15bc90ab003aada2110fb3c6bee54e6d9dbb5e.zip |
Version bump. NM integration, webkit enhancements, search in html parts.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/balsa/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/balsa/balsa-2.4.2.ebuild (renamed from mail-client/balsa/balsa-2.4.0.ebuild) | 26 |
2 files changed, 18 insertions, 16 deletions
diff --git a/mail-client/balsa/ChangeLog b/mail-client/balsa/ChangeLog index eb46a645a757..a528f61ca96f 100644 --- a/mail-client/balsa/ChangeLog +++ b/mail-client/balsa/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for mail-client/balsa # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.91 2010/01/16 16:43:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.92 2010/01/22 00:04:56 eva Exp $ + +*balsa-2.4.2 (22 Jan 2010) + + 22 Jan 2010; Gilles Dartiguelongue <eva@gentoo.org> -balsa-2.4.0.ebuild, + +balsa-2.4.2.ebuild: + Version bump. NM integration, webkit enhancements, search in html parts. 16 Jan 2010; Raúl Porcel <armin76@gentoo.org> balsa-2.4.1-r1.ebuild: alpha/sparc stable wrt #278718 diff --git a/mail-client/balsa/balsa-2.4.0.ebuild b/mail-client/balsa/balsa-2.4.2.ebuild index 194083cc17c8..3c935b484ca9 100644 --- a/mail-client/balsa/balsa-2.4.0.ebuild +++ b/mail-client/balsa/balsa-2.4.2.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.4.0.ebuild,v 1.2 2009/05/31 18:30:28 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.4.2.ebuild,v 1.1 2010/01/22 00:04:56 eva Exp $ EAPI="2" +GCONF_DEBUG="no" -inherit gnome2 +inherit eutils gnome2 DESCRIPTION="Email client for GNOME" HOMEPAGE="http://pawsa.fedorapeople.org/balsa/" @@ -14,13 +15,15 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" # Doesn't currently build with -gnome -IUSE="crypt doc gnome gtkhtml +gtkspell kerberos ldap libnotify rubrica sqlite ssl xface" +IUSE="crypt doc gnome gtkhtml +gtkspell kerberos ldap libnotify networkmanager rubrica sqlite ssl xface" +# TODO: esmtp can be optional, webkit/canberra support RDEPEND=">=dev-libs/glib-2.16 - >=x11-libs/gtk+-2.14 + >=x11-libs/gtk+-2.18 dev-libs/gmime:2.4 >=net-libs/libesmtp-1.0.3 x11-themes/hicolor-icon-theme + x11-themes/gnome-icon-theme net-mail/mailbase dev-libs/libunique crypt? ( >=app-crypt/gpgme-1.0 ) @@ -39,6 +42,7 @@ RDEPEND=">=dev-libs/glib-2.16 !gtkspell? ( virtual/aspell-dict ) kerberos? ( app-crypt/mit-krb5 ) ldap? ( net-nds/openldap ) + networkmanager? ( net-misc/networkmanager ) rubrica? ( dev-libs/libxml2 ) ssl? ( dev-libs/openssl ) xface? ( >=media-libs/compface-1.5.1 )" @@ -65,11 +69,13 @@ pkg_setup() { G2CONF="${G2CONF} --without-gtkhtml" fi + # canberra support is considered experimental G2CONF="${G2CONF} --disable-pcre --enable-gregex --enable-threads --with-unique + --without-canberra $(use_with gnome) $(use_with gnome gtksourceview) $(use_with gtkspell) @@ -81,13 +87,3 @@ pkg_setup() { $(use_with ssl) $(use_with xface compface)" } - -src_prepare() { - gnome2_src_prepare - - # Remove disable deprecated statement - sed -i -e '/DISABLE_DEPRECATED/d' \ - libinit_balsa/Makefile.am libinit_balsa/Makefile.in \ - libbalsa/Makefile.am libbalsa/Makefile.in \ - src/Makefile.am src/Makefile.in || die "sed failed" -} |