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/libbonoboui: ChangeLog libbonoboui-2.24.4-r1.ebuild
Date: Thu, 27 Jan 2011 12:02:56
Message-Id: 20110127114018.B3B0C20054@flycatcher.gentoo.org
1 pacho 11/01/27 11:40:18
2
3 Modified: ChangeLog
4 Added: libbonoboui-2.24.4-r1.ebuild
5 Log:
6 Revision bump to stop building and installing samples and tests (bug #226225).
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.200 gnome-base/libbonoboui/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libbonoboui/ChangeLog?rev=1.200&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libbonoboui/ChangeLog?rev=1.200&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libbonoboui/ChangeLog?r1=1.199&r2=1.200
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v
20 retrieving revision 1.199
21 retrieving revision 1.200
22 diff -u -r1.199 -r1.200
23 --- ChangeLog 19 Jan 2011 21:23:20 -0000 1.199
24 +++ ChangeLog 27 Jan 2011 11:40:18 -0000 1.200
25 @@ -1,6 +1,12 @@
26 # ChangeLog for gnome-base/libbonoboui
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.199 2011/01/19 21:23:20 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.200 2011/01/27 11:40:18 pacho Exp $
30 +
31 +*libbonoboui-2.24.4-r1 (27 Jan 2011)
32 +
33 + 27 Jan 2011; Pacho Ramos <pacho@g.o> +libbonoboui-2.24.4-r1.ebuild:
34 + Revision bump to stop building and installing samples and tests (bug
35 + #226225).
36
37 19 Jan 2011; Markos Chandras <hwoarang@g.o> libbonoboui-2.24.4.ebuild:
38 Stable on amd64 wrt bug #348987
39
40
41
42 1.1 gnome-base/libbonoboui/libbonoboui-2.24.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libbonoboui-2.24.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.4-r1.ebuild,v 1.1 2011/01/27 11:40:18 pacho Exp $
52
53 EAPI="3"
54 GCONF_DEBUG="no"
55
56 inherit eutils gnome2 virtualx
57
58 DESCRIPTION="User Interface part of libbonobo"
59 HOMEPAGE="http://library.gnome.org/devel/libbonoboui/"
60
61 LICENSE="GPL-2 LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
64 IUSE="doc examples test"
65
66 # GTK+ dep due to bug #126565
67 RDEPEND=">=gnome-base/libgnomecanvas-1.116
68 >=gnome-base/libbonobo-2.22
69 >=gnome-base/libgnome-2.13.7
70 >=dev-libs/libxml2-2.4.20
71 >=gnome-base/gconf-2
72 >=x11-libs/gtk+-2.8.12
73 >=dev-libs/glib-2.6.0
74 >=gnome-base/libglade-1.99.11
75 >=dev-libs/popt-1.5"
76
77 DEPEND="${RDEPEND}
78 x11-apps/xrdb
79 sys-devel/gettext
80 >=dev-util/pkgconfig-0.20
81 >=dev-util/intltool-0.40
82 doc? ( >=dev-util/gtk-doc-1 )"
83
84 pkg_setup() {
85 DOCS="AUTHORS ChangeLog NEWS README"
86 G2CONF="${G2CONF} --disable-maintainer-mode"
87 }
88
89 src_prepare() {
90 gnome2_src_prepare
91
92 if ! use test; then
93 # don't waste time building tests
94 sed 's/tests//' -i Makefile.am Makefile.in || die "sed 1 failed"
95 fi
96
97 if ! use examples; then
98 sed 's/samples//' -i Makefile.am Makefile.in || die "sed 2 failed"
99 fi
100 }
101
102 src_configure() {
103 addpredict "/root/.gnome2_private"
104
105 gnome2_src_configure
106 }
107
108 src_test() {
109 addwrite "/root/.gnome2_private"
110 Xemake check || die "tests failed"
111 }