diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 10:34:21 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 10:34:21 +0000 |
commit | 4a22f73acefaa2ffe9af8cb90c8354fc724cda0c (patch) | |
tree | 4ed7cb23acd8f35d00c3d5c71295d581fe0eadd8 /gnome-base/libglade | |
parent | Punt useless libtool files. (diff) | |
download | gentoo-2-4a22f73acefaa2ffe9af8cb90c8354fc724cda0c.tar.gz gentoo-2-4a22f73acefaa2ffe9af8cb90c8354fc724cda0c.tar.bz2 gentoo-2-4a22f73acefaa2ffe9af8cb90c8354fc724cda0c.zip |
USE="static-libs" and punt useless libtool file.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'gnome-base/libglade')
-rw-r--r-- | gnome-base/libglade/ChangeLog | 5 | ||||
-rw-r--r-- | gnome-base/libglade/libglade-2.6.4.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gnome-base/libglade/ChangeLog b/gnome-base/libglade/ChangeLog index bea979cb7399..e7003e1238bb 100644 --- a/gnome-base/libglade/ChangeLog +++ b/gnome-base/libglade/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for gnome-base/libglade # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v 1.132 2011/01/27 11:49:02 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v 1.133 2011/04/10 10:34:21 ssuominen Exp $ + + 10 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> libglade-2.6.4.ebuild: + USE="static-libs" and punt useless libtool file. 27 Jan 2011; Pacho Ramos <pacho@gentoo.org> libglade-2.6.4.ebuild: Don't build tests when unneeded (bug #226227), bump to eapi3, set GCONF_DEBUG diff --git a/gnome-base/libglade/libglade-2.6.4.ebuild b/gnome-base/libglade/libglade-2.6.4.ebuild index c63008190b3f..9a4cdcdfa515 100644 --- a/gnome-base/libglade/libglade-2.6.4.ebuild +++ b/gnome-base/libglade/libglade-2.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v 1.9 2011/01/27 11:49:02 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v 1.10 2011/04/10 10:34:21 ssuominen Exp $ EAPI="3" GCONF_DEBUG="no" @@ -14,7 +14,7 @@ HOMEPAGE="http://library.gnome.org/devel/libglade/stable/" LICENSE="LGPL-2" SLOT="2.0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="doc test" +IUSE="doc static-libs test" RDEPEND=">=dev-libs/glib-2.10:2 >=x11-libs/gtk+-2.8.10:2 @@ -25,6 +25,7 @@ DEPEND="${RDEPEND} doc? ( >=dev-util/gtk-doc-1 )" pkg_setup() { + G2CONF="${G2CONF} $(use_enable static-libs static)" DOCS="AUTHORS ChangeLog NEWS README" python_set_active_version 2 } @@ -45,6 +46,7 @@ src_prepare() { src_install() { dodir /etc/xml gnome2_src_install + find "${ED}" -name '*.la' -exec rm -f {} + python_convert_shebangs 2 "${ED}"/usr/bin/libglade-convert } |