diff options
author | 2014-11-23 22:12:48 +0000 | |
---|---|---|
committer | 2014-11-23 22:12:48 +0000 | |
commit | a790f84d7ce9a59f9cf19232fec934866bbf869c (patch) | |
tree | d8d0a59d50f29e9046be0e05de87a0787dd271f2 /x11-libs | |
parent | Bump eapi, kill doc USE flag and follow current policies (diff) | |
download | gentoo-2-a790f84d7ce9a59f9cf19232fec934866bbf869c.tar.gz gentoo-2-a790f84d7ce9a59f9cf19232fec934866bbf869c.tar.bz2 gentoo-2-a790f84d7ce9a59f9cf19232fec934866bbf869c.zip |
Bump eapi, kill doc USE flag and follow current policies
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/goocanvas/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/goocanvas/goocanvas-1.0.0.ebuild | 35 |
2 files changed, 23 insertions, 17 deletions
diff --git a/x11-libs/goocanvas/ChangeLog b/x11-libs/goocanvas/ChangeLog index 64d9322f0464..4e8c60af295a 100644 --- a/x11-libs/goocanvas/ChangeLog +++ b/x11-libs/goocanvas/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/goocanvas # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/ChangeLog,v 1.50 2014/04/27 09:16:31 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/ChangeLog,v 1.51 2014/11/23 22:12:48 pacho Exp $ + + 23 Nov 2014; Pacho Ramos <pacho@gentoo.org> goocanvas-1.0.0.ebuild: + Bump eapi, kill doc USE flag and follow current policies 27 Apr 2014; Pacho Ramos <pacho@gentoo.org> -goocanvas-2.0.1.ebuild: drop old diff --git a/x11-libs/goocanvas/goocanvas-1.0.0.ebuild b/x11-libs/goocanvas/goocanvas-1.0.0.ebuild index 86048a675f54..e40a05ed6815 100644 --- a/x11-libs/goocanvas/goocanvas-1.0.0.ebuild +++ b/x11-libs/goocanvas/goocanvas-1.0.0.ebuild @@ -1,33 +1,31 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/goocanvas-1.0.0.ebuild,v 1.12 2013/08/12 04:06:56 tetromino Exp $ - -EAPI="3" +# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/goocanvas-1.0.0.ebuild,v 1.13 2014/11/23 22:12:48 pacho Exp $ +EAPI="5" GCONF_DEBUG=no GNOME2_LA_PUNT=yes +GNOME_TARBALL_SUFFIX="bz2" inherit eutils gnome2 libtool DESCRIPTION="Canvas widget for GTK+ using the cairo 2D library for drawing" -HOMEPAGE="http://live.gnome.org/GooCanvas" +HOMEPAGE="https://wiki.gnome.org/Projects/GooCanvas" LICENSE="LGPL-2" SLOT="0" KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" -IUSE="doc examples" +IUSE="examples" -RDEPEND=">=x11-libs/gtk+-2.12:2 +RDEPEND=" + >=x11-libs/gtk+-2.12:2 >=dev-libs/glib-2.10:2 - >=x11-libs/cairo-1.4" + >=x11-libs/cairo-1.4 +" DEPEND="${RDEPEND} + dev-util/gtk-doc-am virtual/pkgconfig - doc? ( >=dev-util/gtk-doc-1.8 )" - -pkg_setup() { - DOCS="AUTHORS ChangeLog NEWS README TODO" - G2CONF="${G2CONF} --disable-rebuilds --disable-static" -} +" src_prepare() { # https://bugzilla.gnome.org/show_bug.cgi?id=671766 @@ -41,8 +39,13 @@ src_prepare() { sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \ -i Makefile.am Makefile.in || die "sed 2 failed" - # Needed for FreeBSD - Please do not remove - elibtoolize + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-rebuilds \ + --disable-static } src_install() { |