diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-06-29 02:02:33 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-06-29 02:02:33 +0000 |
commit | 502246bfc7cec3cda07a96d0827e9668557a0aba (patch) | |
tree | 11b982ca31be215b236fb6c124d5e408c980c6c3 /mail-client | |
parent | Fix gcc-4.5 building problem wrt bug 317163, and python cflags problem wrt bu... (diff) | |
download | gentoo-2-502246bfc7cec3cda07a96d0827e9668557a0aba.tar.gz gentoo-2-502246bfc7cec3cda07a96d0827e9668557a0aba.tar.bz2 gentoo-2-502246bfc7cec3cda07a96d0827e9668557a0aba.zip |
Remove old version, also fails with --as-needed in LDFLAGS
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/balsa/ChangeLog | 5 | ||||
-rw-r--r-- | mail-client/balsa/balsa-2.4.2.ebuild | 89 |
2 files changed, 4 insertions, 90 deletions
diff --git a/mail-client/balsa/ChangeLog b/mail-client/balsa/ChangeLog index f26629aa3cf4..b6c91568d085 100644 --- a/mail-client/balsa/ChangeLog +++ b/mail-client/balsa/ChangeLog @@ -1,6 +1,9 @@ # 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.100 2010/06/26 16:51:15 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.101 2010/06/29 02:02:33 nirbheek Exp $ + + 29 Jun 2010; Nirbheek Chauhan <nirbheek@gentoo.org> -balsa-2.4.2.ebuild: + Remove old version, also fails with --as-needed in LDFLAGS 26 Jun 2010; Raúl Porcel <armin76@gentoo.org> balsa-2.4.7.ebuild: alpha/sparc stable wrt #315361 diff --git a/mail-client/balsa/balsa-2.4.2.ebuild b/mail-client/balsa/balsa-2.4.2.ebuild deleted file mode 100644 index 3c935b484ca9..000000000000 --- a/mail-client/balsa/balsa-2.4.2.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# 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.2.ebuild,v 1.1 2010/01/22 00:04:56 eva Exp $ - -EAPI="2" -GCONF_DEBUG="no" - -inherit eutils gnome2 - -DESCRIPTION="Email client for GNOME" -HOMEPAGE="http://pawsa.fedorapeople.org/balsa/" -SRC_URI="http://pawsa.fedorapeople.org/${PN}/${P}.tar.bz2" - -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 networkmanager rubrica sqlite ssl xface" - -# TODO: esmtp can be optional, webkit/canberra support -RDEPEND=">=dev-libs/glib-2.16 - >=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 ) - gnome? ( - >=gnome-base/orbit-2 - >=gnome-base/libbonobo-2.0 - >=gnome-base/libgnome-2.0 - >=gnome-base/libgnomeui-2.0 - >=gnome-base/gconf-2.0 - >=gnome-base/gnome-keyring-2.20 - >=x11-libs/gtksourceview-2 ) - gtkhtml? ( >=gnome-extra/gtkhtml-3.14 ) - sqlite? ( >=dev-db/sqlite-2.8 ) - libnotify? ( x11-libs/libnotify ) - gtkspell? ( =app-text/gtkspell-2* ) - !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 )" -DEPEND="${RDEPEND} - dev-util/intltool - dev-util/pkgconfig - sys-devel/gettext - >=app-text/scrollkeeper-0.1.4 - app-text/gnome-doc-utils - doc? ( dev-util/gtk-doc )" - -DOCS="AUTHORS ChangeLog HACKING NEWS README TODO docs/*" - -pkg_setup() { - if use crypt ; then - G2CONF="${G2CONF} --with-gpgme=gpgme-config" - else - G2CONF="${G2CONF} --without-gpgme" - fi - - if use gtkhtml ; then - G2CONF="${G2CONF} --with-gtkhtml=3" - else - 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) - $(use_with kerberos gss) - $(use_with ldap) - $(use_with libnotify) - $(use_with rubrica) - $(use_with sqlite) - $(use_with ssl) - $(use_with xface compface)" -} |