diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-05-10 21:44:59 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-05-10 21:44:59 +0000 |
commit | 6859487f9302ab323db6a882c572e3f5b2e7f75d (patch) | |
tree | 24060b5041ebb90aa83c713b9091f6f99a55b5c1 /media-libs | |
parent | Remove patch, it is applied upstream (diff) | |
download | gentoo-2-6859487f9302ab323db6a882c572e3f5b2e7f75d.tar.gz gentoo-2-6859487f9302ab323db6a882c572e3f5b2e7f75d.tar.bz2 gentoo-2-6859487f9302ab323db6a882c572e3f5b2e7f75d.zip |
Bump to 1.3.10, one bugfix
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/clutter-gst/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/clutter-gst/clutter-gst-1.3.10.ebuild (renamed from media-libs/clutter-gst/clutter-gst-1.3.8.ebuild) | 2 | ||||
-rw-r--r-- | media-libs/clutter-gst/clutter-gst-1.3.6.ebuild | 51 |
3 files changed, 9 insertions, 53 deletions
diff --git a/media-libs/clutter-gst/ChangeLog b/media-libs/clutter-gst/ChangeLog index a30f42c4321c..6fa41142bc2f 100644 --- a/media-libs/clutter-gst/ChangeLog +++ b/media-libs/clutter-gst/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-libs/clutter-gst # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/ChangeLog,v 1.12 2011/04/19 11:26:02 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/ChangeLog,v 1.13 2011/05/10 21:44:59 nirbheek Exp $ + +*clutter-gst-1.3.10 (10 May 2011) + + 10 May 2011; Nirbheek Chauhan <nirbheek@gentoo.org> + -clutter-gst-1.3.6.ebuild, -clutter-gst-1.3.8.ebuild, + +clutter-gst-1.3.10.ebuild: + Bump to 1.3.10, one bugfix 19 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> clutter-gst-1.3.8.ebuild: diff --git a/media-libs/clutter-gst/clutter-gst-1.3.8.ebuild b/media-libs/clutter-gst/clutter-gst-1.3.10.ebuild index 2daaa4190470..bee760df0649 100644 --- a/media-libs/clutter-gst/clutter-gst-1.3.8.ebuild +++ b/media-libs/clutter-gst/clutter-gst-1.3.10.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/media-libs/clutter-gst/clutter-gst-1.3.8.ebuild,v 1.2 2011/04/19 11:26:02 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/clutter-gst-1.3.10.ebuild,v 1.1 2011/05/10 21:44:59 nirbheek Exp $ EAPI="3" PYTHON_DEPEND="2" # Just a build-time dependency diff --git a/media-libs/clutter-gst/clutter-gst-1.3.6.ebuild b/media-libs/clutter-gst/clutter-gst-1.3.6.ebuild deleted file mode 100644 index a4f3cb66a3a9..000000000000 --- a/media-libs/clutter-gst/clutter-gst-1.3.6.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/clutter-gst/clutter-gst-1.3.6.ebuild,v 1.4 2011/03/24 03:11:41 nirbheek Exp $ - -EAPI="3" -PYTHON_DEPEND="2" # Just a build-time dependency -CLUTTER_LA_PUNT="yes" - -# inherit clutter after gnome2 so that defaults aren't overriden -inherit python gnome2 clutter - -DESCRIPTION="GStreamer Integration library for Clutter" - -SLOT="1.0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc examples +introspection" - -RDEPEND=" - >=dev-libs/glib-2.20:2 - >=media-libs/clutter-1.4.0:1.0[introspection?] - media-libs/gstreamer:0.10[introspection?] - media-libs/gst-plugins-base:0.10[introspection?] - introspection? ( >=dev-libs/gobject-introspection-0.6.8 )" -DEPEND="${RDEPEND} - doc? ( >=dev-util/gtk-doc-1.8 )" - -DOCS="AUTHORS NEWS README" -EXAMPLES="examples/{*.c,*.png,README}" - -src_prepare() { - # XXX: debug default is "minimum" in even releases; "yes" in odd releases - G2CONF="${G2CONF} - $(use_enable introspection)" - - gnome2_src_prepare - python_convert_shebangs 2 "${S}"/scripts/pso2h.py -} - -src_compile() { - # Avoid sandbox violation with USE="introspection", bug #356283 - export GST_REGISTRY=${T}/registry.cache.xml - - # Clutter tries to access dri without userpriv - # Massive failure of a hack, see bug 360219 and bug 360073 - shopt -s nullglob - local cards=$(echo -n /dev/dri/card* /dev/nvidiactl* | sed 's/ /:/g') - shopt -u nullglob - test -n "${cards}" && addpredict "${cards}" - - emake || die "emake failed" -} |