diff options
author | 2011-01-27 11:49:02 +0000 | |
---|---|---|
committer | 2011-01-27 11:49:02 +0000 | |
commit | f988efa5fafaf4c83f4fae2789af2341a92ef656 (patch) | |
tree | 952025cda02b7c5024fecffb3017d34bcbad3867 /gnome-base/libglade | |
parent | Revision bump to stop building and installing samples and tests (bug #226225). (diff) | |
download | gentoo-2-f988efa5fafaf4c83f4fae2789af2341a92ef656.tar.gz gentoo-2-f988efa5fafaf4c83f4fae2789af2341a92ef656.tar.bz2 gentoo-2-f988efa5fafaf4c83f4fae2789af2341a92ef656.zip |
Don't build tests when unneeded (bug #226227), bump to eapi3, set GCONF_DEBUG to proper value and update HOMEPAGE.
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'gnome-base/libglade')
-rw-r--r-- | gnome-base/libglade/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-base/libglade/libglade-2.6.4.ebuild | 17 |
2 files changed, 17 insertions, 8 deletions
diff --git a/gnome-base/libglade/ChangeLog b/gnome-base/libglade/ChangeLog index 1b58bd33dbd2..bea979cb7399 100644 --- a/gnome-base/libglade/ChangeLog +++ b/gnome-base/libglade/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for gnome-base/libglade -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v 1.131 2010/11/08 22:43:29 eva Exp $ +# 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 $ + + 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 + to proper value and update HOMEPAGE. 08 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org> libglade-2.6.4.ebuild: Fix support for python interpreter not being python 2, bug #313451. Pin diff --git a/gnome-base/libglade/libglade-2.6.4.ebuild b/gnome-base/libglade/libglade-2.6.4.ebuild index d89aeb4979a6..c63008190b3f 100644 --- a/gnome-base/libglade/libglade-2.6.4.ebuild +++ b/gnome-base/libglade/libglade-2.6.4.ebuild @@ -1,19 +1,20 @@ -# Copyright 1999-2010 Gentoo Foundation +# 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.8 2010/11/08 22:43:29 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v 1.9 2011/01/27 11:49:02 pacho Exp $ -EAPI="2" +EAPI="3" +GCONF_DEBUG="no" PYTHON_DEPEND="2" inherit eutils gnome2 python DESCRIPTION="Library to construct graphical interfaces at runtime" -HOMEPAGE="http://www.gnome.org/" +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" +IUSE="doc test" RDEPEND=">=dev-libs/glib-2.10:2 >=x11-libs/gtk+-2.8.10:2 @@ -35,12 +36,16 @@ src_prepare() { # patch to not throw a warning with gtk+-2.14 during tests, as it triggers abort epatch "${FILESDIR}/${PN}-2.6.3-fix_tests-page_size.patch" + + if ! use test; then + sed 's/ tests//' -i Makefile.am Makefile.in || die "sed failed" + fi } src_install() { dodir /etc/xml gnome2_src_install - python_convert_shebangs 2 "${D}"/usr/bin/libglade-convert + python_convert_shebangs 2 "${ED}"/usr/bin/libglade-convert } pkg_postinst() { |