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/libgnomeui: ChangeLog libgnomeui-2.24.4.ebuild
Date: Thu, 27 Jan 2011 11:57:41
Message-Id: 20110127115729.A09BF20054@flycatcher.gentoo.org
1 pacho 11/01/27 11:57:29
2
3 Modified: ChangeLog libgnomeui-2.24.4.ebuild
4 Log:
5 Don't build tests when not needed (bug #226229), bump to eapi3, stop inheritting unneded eclass, update homepage.
6
7 (Portage version: 2.1.9.35/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.200 gnome-base/libgnomeui/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/ChangeLog?rev=1.200&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/ChangeLog?rev=1.200&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/ChangeLog?r1=1.199&r2=1.200
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/ChangeLog,v
19 retrieving revision 1.199
20 retrieving revision 1.200
21 diff -u -r1.199 -r1.200
22 --- ChangeLog 19 Jan 2011 21:24:26 -0000 1.199
23 +++ ChangeLog 27 Jan 2011 11:57:29 -0000 1.200
24 @@ -1,6 +1,10 @@
25 # ChangeLog for gnome-base/libgnomeui
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/ChangeLog,v 1.199 2011/01/19 21:24:26 hwoarang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/ChangeLog,v 1.200 2011/01/27 11:57:29 pacho Exp $
29 +
30 + 27 Jan 2011; Pacho Ramos <pacho@g.o> libgnomeui-2.24.4.ebuild:
31 + Don't build tests when not needed (bug #226229), bump to eapi3, stop
32 + inheritting unneded eclass, update homepage.
33
34 19 Jan 2011; Markos Chandras <hwoarang@g.o> libgnomeui-2.24.4.ebuild:
35 Stable on amd64 wrt bug #348987
36
37
38
39 1.4 gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild?r1=1.3&r2=1.4
44
45 Index: libgnomeui-2.24.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- libgnomeui-2.24.4.ebuild 19 Jan 2011 21:24:26 -0000 1.3
52 +++ libgnomeui-2.24.4.ebuild 27 Jan 2011 11:57:29 -0000 1.4
53 @@ -1,18 +1,19 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild,v 1.3 2011/01/19 21:24:26 hwoarang Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnomeui/libgnomeui-2.24.4.ebuild,v 1.4 2011/01/27 11:57:29 pacho Exp $
58
59 +EAPI="3"
60 GCONF_DEBUG="no"
61
62 -inherit eutils gnome2
63 +inherit gnome2
64
65 DESCRIPTION="User Interface routines for Gnome"
66 -HOMEPAGE="http://www.gnome.org/"
67 +HOMEPAGE="http://library.gnome.org/devel/libgnomeui/stable/"
68
69 LICENSE="LGPL-2"
70 SLOT="0"
71 KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
72 -IUSE="doc"
73 +IUSE="doc test"
74
75 # gtk+-2.14 dep instead of 2.12 ensures system doesn't loose VFS capabilities in GtkFilechooser
76 RDEPEND=">=dev-libs/libxml2-2.4.20
77 @@ -36,3 +37,11 @@
78 PDEPEND="x11-themes/gnome-icon-theme"
79
80 DOCS="AUTHORS ChangeLog NEWS README"
81 +
82 +src_prepare() {
83 + gnome2_src_prepare
84 +
85 + if ! use test; then
86 + sed 's/ test-gnome//' -i Makefile.am Makefile.in || die "sed failed"
87 + fi
88 +}