diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-11-11 13:13:32 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-11-11 13:13:32 +0000 |
commit | 11b76cc54904bde59fae63f2464376f272d1c5e6 (patch) | |
tree | e651b0f82596b2bbc32061a392044ba10ea1c6e1 /media-libs | |
parent | Version bump (diff) | |
download | gentoo-2-11b76cc54904bde59fae63f2464376f272d1c5e6.tar.gz gentoo-2-11b76cc54904bde59fae63f2464376f272d1c5e6.tar.bz2 gentoo-2-11b76cc54904bde59fae63f2464376f272d1c5e6.zip |
Version bump (now with stable 1.6.x finally, allowing us to move to it sooner from 1.5.x branch that was needed due it fixing important bugs for 3.12 even being a testing branch). Move away from clutter.eclass (#486362). Drop old
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/clutter-gtk/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild (renamed from media-libs/clutter-gtk/clutter-gtk-1.4.4.ebuild) | 25 |
2 files changed, 25 insertions, 10 deletions
diff --git a/media-libs/clutter-gtk/ChangeLog b/media-libs/clutter-gtk/ChangeLog index b9fb56fbdfe4..f54020ef8cdd 100644 --- a/media-libs/clutter-gtk/ChangeLog +++ b/media-libs/clutter-gtk/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for media-libs/clutter-gtk # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gtk/ChangeLog,v 1.56 2014/07/23 15:19:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gtk/ChangeLog,v 1.57 2014/11/11 13:13:32 pacho Exp $ + +*clutter-gtk-1.6.0 (11 Nov 2014) + + 11 Nov 2014; Pacho Ramos <pacho@gentoo.org> +clutter-gtk-1.6.0.ebuild, + -clutter-gtk-1.4.4.ebuild: + Version bump (now with stable 1.6.x finally, allowing us to move to it sooner + from 1.5.x branch that was needed due it fixing important bugs for 3.12 even + being a testing branch). Move away from clutter.eclass (#486362). Drop old 23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> clutter-gtk-1.5.2.ebuild: Stable for x86, wrt bug #512012 diff --git a/media-libs/clutter-gtk/clutter-gtk-1.4.4.ebuild b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild index 3db2a447041b..a882e531e4df 100644 --- a/media-libs/clutter-gtk/clutter-gtk-1.4.4.ebuild +++ b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild @@ -1,24 +1,24 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gtk/clutter-gtk-1.4.4.ebuild,v 1.6 2014/02/22 22:13:35 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild,v 1.1 2014/11/11 13:13:32 pacho Exp $ EAPI="5" GCONF_DEBUG="yes" -CLUTTER_LA_PUNT="yes" +GNOME2_LA_PUNT="yes" -# inherit clutter after gnome2 so that defaults aren't overriden -inherit gnome2 clutter gnome.org +inherit gnome2 DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+" -HOMEPAGE="http://live.gnome.org/Clutter" +HOMEPAGE="https://wiki.gnome.org/Projects/Clutter" +LICENSE="LGPL-2.1+" SLOT="1.0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="examples +introspection" RDEPEND=" >=x11-libs/gtk+-3.6.0:3[introspection?] - >=media-libs/clutter-1.13.7:1.0[introspection?] + >=media-libs/clutter-1.18.0:1.0[introspection?] media-libs/cogl:1.0=[introspection?] introspection? ( >=dev-libs/gobject-introspection-0.9.12 ) " @@ -29,10 +29,17 @@ DEPEND="${RDEPEND} " src_configure() { - DOCS="NEWS README" - EXAMPLES="examples/{*.c,redhand.png}" gnome2_src_configure \ --disable-maintainer-flags \ --enable-deprecated \ $(use_enable introspection) } + +src_install() { + gnome2_src_install + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins examples/{*.c,redhand.png} + fi +} |