diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-04-10 13:14:13 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-04-10 13:14:13 +0000 |
commit | 48ce2b4e9a2e25c752eb5490a7dc00e165a5675c (patch) | |
tree | 1bd69bc44fd2f15cea414145f34c2bdb71ed293b /gnome-base/libbonoboui | |
parent | Remove all keywords as the package misses patches, 332485 (diff) | |
download | historical-48ce2b4e9a2e25c752eb5490a7dc00e165a5675c.tar.gz historical-48ce2b4e9a2e25c752eb5490a7dc00e165a5675c.tar.bz2 historical-48ce2b4e9a2e25c752eb5490a7dc00e165a5675c.zip |
Version bump with translation updates, remove old.
Package-Manager: portage-2.1.9.45/cvs/Linux x86_64
Diffstat (limited to 'gnome-base/libbonoboui')
-rw-r--r-- | gnome-base/libbonoboui/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-base/libbonoboui/libbonoboui-2.24.5.ebuild (renamed from gnome-base/libbonoboui/libbonoboui-2.24.4.ebuild) | 33 |
2 files changed, 33 insertions, 8 deletions
diff --git a/gnome-base/libbonoboui/ChangeLog b/gnome-base/libbonoboui/ChangeLog index 469dae3ac54a..402cd041b3a6 100644 --- a/gnome-base/libbonoboui/ChangeLog +++ b/gnome-base/libbonoboui/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-base/libbonoboui # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.210 2011/04/10 12:44:09 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/ChangeLog,v 1.211 2011/04/10 13:14:13 pacho Exp $ + +*libbonoboui-2.24.5 (10 Apr 2011) + + 10 Apr 2011; Pacho Ramos <pacho@gentoo.org> -libbonoboui-2.24.4.ebuild, + +libbonoboui-2.24.5.ebuild: + Version bump with translation updates, remove old. 10 Apr 2011; Samuli Suominen <ssuominen@gentoo.org> libbonoboui-2.24.4-r1.ebuild: diff --git a/gnome-base/libbonoboui/libbonoboui-2.24.4.ebuild b/gnome-base/libbonoboui/libbonoboui-2.24.5.ebuild index 192ec353afea..19ec4c843261 100644 --- a/gnome-base/libbonoboui/libbonoboui-2.24.4.ebuild +++ b/gnome-base/libbonoboui/libbonoboui-2.24.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.4.ebuild,v 1.6 2011/03/16 10:47:12 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libbonoboui/libbonoboui-2.24.5.ebuild,v 1.1 2011/04/10 13:14:13 pacho Exp $ EAPI="3" GCONF_DEBUG="no" @@ -8,12 +8,12 @@ GCONF_DEBUG="no" inherit eutils gnome2 virtualx DESCRIPTION="User Interface part of libbonobo" -HOMEPAGE="http://developer.gnome.org/arch/gnome/componentmodel/bonobo.html" +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 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="doc" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +IUSE="doc examples test" # GTK+ dep due to bug #126565 RDEPEND=">=gnome-base/libgnomecanvas-1.116 @@ -33,10 +33,24 @@ DEPEND="${RDEPEND} >=dev-util/intltool-0.40 doc? ( >=dev-util/gtk-doc-1 )" -DOCS="AUTHORS ChangeLog NEWS README" - pkg_setup() { - G2CONF="${G2CONF} --disable-maintainer-mode" + DOCS="AUTHORS ChangeLog NEWS README" + G2CONF="${G2CONF} + --disable-static + --disable-maintainer-mode" +} + +src_prepare() { + gnome2_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 } src_configure() { @@ -49,3 +63,8 @@ src_test() { addwrite "/root/.gnome2_private" Xemake check || die "tests failed" } + +src_install() { + gnome2_src_install + find "${ED}" -name '*.la' -exec rm -f {} + +} |