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/clutter-gtk/clutter-gtk-1.6.0.ebuild | |
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/clutter-gtk/clutter-gtk-1.6.0.ebuild')
-rw-r--r-- | media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild new file mode 100644 index 000000000000..a882e531e4df --- /dev/null +++ b/media-libs/clutter-gtk/clutter-gtk-1.6.0.ebuild @@ -0,0 +1,45 @@ +# 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.6.0.ebuild,v 1.1 2014/11/11 13:13:32 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+" +HOMEPAGE="https://wiki.gnome.org/Projects/Clutter" +LICENSE="LGPL-2.1+" + +SLOT="1.0" +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.18.0:1.0[introspection?] + media-libs/cogl:1.0=[introspection?] + introspection? ( >=dev-libs/gobject-introspection-0.9.12 ) +" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + >=sys-devel/gettext-0.18 + virtual/pkgconfig +" + +src_configure() { + 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 +} |