diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-08-23 21:36:16 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-08-23 21:36:16 +0000 |
commit | b86037d26291fbe4a2a795547a6e646c26cc3900 (patch) | |
tree | 659357515a46831b98c4647554a8815b741c8b4e /gnome-extra | |
parent | arm stable, bug #333421 (diff) | |
download | gentoo-2-b86037d26291fbe4a2a795547a6e646c26cc3900.tar.gz gentoo-2-b86037d26291fbe4a2a795547a6e646c26cc3900.tar.bz2 gentoo-2-b86037d26291fbe4a2a795547a6e646c26cc3900.zip |
Drop unneeded autoreconf. Drop unused dependencies per configure. Add kerberos explicit dependency like was done in evolution ebuild. Raise gtk-doc dependency per configure.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/evolution-exchange/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild | 18 |
2 files changed, 14 insertions, 12 deletions
diff --git a/gnome-extra/evolution-exchange/ChangeLog b/gnome-extra/evolution-exchange/ChangeLog index 368419a837c0..11d6690f66d8 100644 --- a/gnome-extra/evolution-exchange/ChangeLog +++ b/gnome-extra/evolution-exchange/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/evolution-exchange # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.122 2010/08/14 18:49:06 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.123 2010/08/23 21:36:16 eva Exp $ + + 23 Aug 2010; Gilles Dartiguelongue <eva@gentoo.org> + evolution-exchange-2.30.2.ebuild: + Drop unneeded autoreconf. Drop unused dependencies per configure. Add + kerberos explicit dependency like was done in evolution ebuild. Raise + gtk-doc dependency per configure. 14 Aug 2010; Raúl Porcel <armin76@gentoo.org> evolution-exchange-2.28.3.ebuild: diff --git a/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild b/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild index 137806d88511..157412610229 100644 --- a/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild +++ b/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild,v 1.4 2010/08/01 12:01:38 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.30.2.ebuild,v 1.5 2010/08/23 21:36:16 eva Exp $ EAPI="2" -inherit autotools gnome2 +inherit gnome2 DESCRIPTION="Evolution module for connecting to Microsoft Exchange" HOMEPAGE="http://www.novell.com/products/desktop/features/evolution.html" @@ -20,23 +20,22 @@ RDEPEND=" >=dev-libs/glib-2.16.0 >=x11-libs/gtk+-2.10 >=gnome-base/gconf-2.0 - >=gnome-base/libbonobo-2.20.3 - >=gnome-base/libglade-2.0 - >=gnome-base/libgnomeui-2.0 dev-libs/libxml2 net-libs/libsoup:2.4 - >=net-nds/openldap-2.1.30-r2" + >=net-nds/openldap-2.1.30-r2 + virtual/krb5" DEPEND="${RDEPEND} >=dev-util/intltool-0.40 dev-util/pkgconfig - dev-util/gtk-doc-am - doc? ( >=dev-util/gtk-doc-1 )" + >=dev-util/gtk-doc-am-1.9 + doc? ( >=dev-util/gtk-doc-1.9 )" DOCS="AUTHORS ChangeLog NEWS README" pkg_setup() { G2CONF="${G2CONF} + --with-krb5=/usr --with-openldap --disable-static $(use_with debug e2k-debug) @@ -55,7 +54,4 @@ src_prepare() { sed 's:-DG.*DISABLE_SINGLE_INCLUDES::g' -i configure.ac configure \ || die "sed 3 failed" - - intltoolize --force --copy --automake || die "intltoolize failed" - eautoreconf } |