Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/libglade: ChangeLog libglade-2.6.4.ebuild
Date: Thu, 27 Jan 2011 11:49:13
Message-Id: 20110127114902.42C1420054@flycatcher.gentoo.org
1 pacho 11/01/27 11:49:02
2
3 Modified: ChangeLog libglade-2.6.4.ebuild
4 Log:
5 Don't build tests when unneeded (bug #226227), bump to eapi3, set GCONF_DEBUG to proper value and update HOMEPAGE.
6
7 (Portage version: 2.1.9.35/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.132 gnome-base/libglade/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/ChangeLog?rev=1.132&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/ChangeLog?rev=1.132&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/ChangeLog?r1=1.131&r2=1.132
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v
19 retrieving revision 1.131
20 retrieving revision 1.132
21 diff -u -r1.131 -r1.132
22 --- ChangeLog 8 Nov 2010 22:43:29 -0000 1.131
23 +++ ChangeLog 27 Jan 2011 11:49:02 -0000 1.132
24 @@ -1,6 +1,10 @@
25 # ChangeLog for gnome-base/libglade
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v 1.131 2010/11/08 22:43:29 eva Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/ChangeLog,v 1.132 2011/01/27 11:49:02 pacho Exp $
30 +
31 + 27 Jan 2011; Pacho Ramos <pacho@g.o> libglade-2.6.4.ebuild:
32 + Don't build tests when unneeded (bug #226227), bump to eapi3, set GCONF_DEBUG
33 + to proper value and update HOMEPAGE.
34
35 08 Nov 2010; Gilles Dartiguelongue <eva@g.o> libglade-2.6.4.ebuild:
36 Fix support for python interpreter not being python 2, bug #313451. Pin
37
38
39
40 1.9 gnome-base/libglade/libglade-2.6.4.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild?rev=1.9&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild?rev=1.9&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild?r1=1.8&r2=1.9
45
46 Index: libglade-2.6.4.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v
49 retrieving revision 1.8
50 retrieving revision 1.9
51 diff -u -r1.8 -r1.9
52 --- libglade-2.6.4.ebuild 8 Nov 2010 22:43:29 -0000 1.8
53 +++ libglade-2.6.4.ebuild 27 Jan 2011 11:49:02 -0000 1.9
54 @@ -1,19 +1,20 @@
55 -# Copyright 1999-2010 Gentoo Foundation
56 +# Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v 1.8 2010/11/08 22:43:29 eva Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libglade/libglade-2.6.4.ebuild,v 1.9 2011/01/27 11:49:02 pacho Exp $
60
61 -EAPI="2"
62 +EAPI="3"
63 +GCONF_DEBUG="no"
64 PYTHON_DEPEND="2"
65
66 inherit eutils gnome2 python
67
68 DESCRIPTION="Library to construct graphical interfaces at runtime"
69 -HOMEPAGE="http://www.gnome.org/"
70 +HOMEPAGE="http://library.gnome.org/devel/libglade/stable/"
71
72 LICENSE="LGPL-2"
73 SLOT="2.0"
74 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
75 -IUSE="doc"
76 +IUSE="doc test"
77
78 RDEPEND=">=dev-libs/glib-2.10:2
79 >=x11-libs/gtk+-2.8.10:2
80 @@ -35,12 +36,16 @@
81
82 # patch to not throw a warning with gtk+-2.14 during tests, as it triggers abort
83 epatch "${FILESDIR}/${PN}-2.6.3-fix_tests-page_size.patch"
84 +
85 + if ! use test; then
86 + sed 's/ tests//' -i Makefile.am Makefile.in || die "sed failed"
87 + fi
88 }
89
90 src_install() {
91 dodir /etc/xml
92 gnome2_src_install
93 - python_convert_shebangs 2 "${D}"/usr/bin/libglade-convert
94 + python_convert_shebangs 2 "${ED}"/usr/bin/libglade-convert
95 }
96
97 pkg_postinst() {