diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-11-23 20:41:33 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-11-23 20:41:33 +0000 |
commit | 703f51e931f063d55114c1b319782401764f232e (patch) | |
tree | 0bdcc33a8578fc5cdb12b6782d4d0e4d63d33c43 /gnome-base | |
parent | Stable for ppc64, wrt bug #527502 (diff) | |
download | gentoo-2-703f51e931f063d55114c1b319782401764f232e.tar.gz gentoo-2-703f51e931f063d55114c1b319782401764f232e.tar.bz2 gentoo-2-703f51e931f063d55114c1b319782401764f232e.zip |
Bump eapi, kill doc USE flag and follow current policies, use addpredict instead of addwrite
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/libbonoboui/ChangeLog | 11 | ||||
-rw-r--r-- | gnome-base/libbonoboui/libbonoboui-2.24.5-r1.ebuild | 61 |
2 files changed, 69 insertions, 3 deletions
diff --git a/gnome-base/libbonoboui/ChangeLog b/gnome-base/libbonoboui/ChangeLog index 824bd1434732..295a15a2a4d6 100644 --- a/gnome-base/libbonoboui/ChangeLog +++ b/gnome-base/libbonoboui/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-base/libbonoboui -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.219 2013/03/29 19:31:03 eva Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.220 2014/11/23 20:41:33 pacho Exp $ + +*libbonoboui-2.24.5-r1 (23 Nov 2014) + + 23 Nov 2014; Pacho Ramos <pacho@gentoo.org> +libbonoboui-2.24.5-r1.ebuild: + Bump eapi, kill doc USE flag and follow current policies, use addpredict + instead of addwrite 29 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> -libbonoboui-2.24.4-r1.ebuild: @@ -807,4 +813,3 @@ * libbonoboui-1.116.0 (22 May 2002) 22 May 2002; Spider <spider@gentoo.org> libbonoboui-1.116.0.ebuild : part of gnome2 . initial cvs commit - diff --git a/gnome-base/libbonoboui/libbonoboui-2.24.5-r1.ebuild b/gnome-base/libbonoboui/libbonoboui-2.24.5-r1.ebuild new file mode 100644 index 000000000000..b70a6aa2c937 --- /dev/null +++ b/gnome-base/libbonoboui/libbonoboui-2.24.5-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.5-r1.ebuild,v 1.1 2014/11/23 20:41:33 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" +GNOME_TARBALL_SUFFIX="bz2" + +inherit eutils gnome2 virtualx + +DESCRIPTION="User Interface part of libbonobo" +HOMEPAGE="http://library.gnome.org/devel/libbonoboui/" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="examples test" + +# GTK+ dep due to bug #126565 +RDEPEND=" + >=gnome-base/libgnomecanvas-1.116 + >=gnome-base/libbonobo-2.22 + >=gnome-base/libgnome-2.13.7 + >=dev-libs/libxml2-2.4.20:2 + >=gnome-base/gconf-2:2 + >=x11-libs/gtk+-2.8.12:2 + >=dev-libs/glib-2.6.0:2 + >=gnome-base/libglade-1.99.11:2.0 + >=dev-libs/popt-1.5 +" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + x11-apps/xrdb + sys-devel/gettext + virtual/pkgconfig + >=dev-util/intltool-0.40 +" + +src_prepare() { + if ! use test; then + # don't waste time building tests + sed 's/tests//' -i Makefile.am Makefile.in || die "sed 1 failed" + fi + + if ! use examples; then + sed 's/samples//' -i Makefile.am Makefile.in || die "sed 2 failed" + fi + + gnome2_src_prepare +} + +src_configure() { + addpredict "/root/.gnome2_private" + gnome2_src_configure --disable-static +} + +src_test() { + addpredict "/root/.gnome2_private" + Xemake check +} |