diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-30 18:50:26 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-30 18:50:26 +0000 |
commit | 5eda9f1dfdf7d8b16e3cca15f3da0b4441075d59 (patch) | |
tree | f413f39959a226baa06424f0a0e610ca16885c11 /media-video/cheese | |
parent | Remove now useless || ( ) hack that allowed usbmuxd instead of libusbmuxd bef... (diff) | |
download | gentoo-2-5eda9f1dfdf7d8b16e3cca15f3da0b4441075d59.tar.gz gentoo-2-5eda9f1dfdf7d8b16e3cca15f3da0b4441075d59.tar.bz2 gentoo-2-5eda9f1dfdf7d8b16e3cca15f3da0b4441075d59.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'media-video/cheese')
-rw-r--r-- | media-video/cheese/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/cheese/cheese-3.12.2.ebuild | 92 |
2 files changed, 98 insertions, 1 deletions
diff --git a/media-video/cheese/ChangeLog b/media-video/cheese/ChangeLog index 00d3f48cd307..3d3d0f42a1c2 100644 --- a/media-video/cheese/ChangeLog +++ b/media-video/cheese/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/cheese # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/cheese/ChangeLog,v 1.82 2014/04/27 17:37:39 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/cheese/ChangeLog,v 1.83 2014/05/30 18:50:26 pacho Exp $ + +*cheese-3.12.2 (30 May 2014) + + 30 May 2014; Pacho Ramos <pacho@gentoo.org> +cheese-3.12.2.ebuild: + Version bump *cheese-3.12.1 (27 Apr 2014) diff --git a/media-video/cheese/cheese-3.12.2.ebuild b/media-video/cheese/cheese-3.12.2.ebuild new file mode 100644 index 000000000000..5561e9da4617 --- /dev/null +++ b/media-video/cheese/cheese-3.12.2.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/cheese/cheese-3.12.2.ebuild,v 1.1 2014/05/30 18:50:26 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +VALA_MIN_API_VERSION="0.24" + +inherit gnome2 vala virtualx + +DESCRIPTION="A cheesy program to take pictures and videos from your webcam" +HOMEPAGE="https://wiki.gnome.org/Apps/Cheese" + +LICENSE="GPL-2+" +SLOT="0/7" # subslot = libcheese soname version +IUSE="+introspection test" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +# using clutter-gst-2.0.0 results in GLSL errors; bug #478702 +COMMON_DEPEND=" + >=dev-libs/glib-2.39.90:2 + >=x11-libs/gtk+-3.10:3[introspection?] + >=x11-libs/cairo-1.10:= + >=x11-libs/pango-1.28.0 + >=gnome-base/gnome-desktop-2.91.6:3= + >=gnome-base/librsvg-2.32.0:2 + >=media-libs/libcanberra-0.26[gtk3] + >=media-libs/clutter-1.13.2:1.0[introspection?] + >=media-libs/clutter-gtk-0.91.8:1.0 + >=media-libs/clutter-gst-2.0.6:2.0 + media-libs/cogl:1.0=[introspection?] + + media-video/gnome-video-effects + x11-libs/gdk-pixbuf:2[jpeg,introspection?] + x11-libs/libX11 + x11-libs/libXtst + + media-libs/gstreamer:1.0[introspection?] + media-libs/gst-plugins-base:1.0[introspection?,ogg,pango,theora,vorbis,X] + + >=virtual/udev-171:=[gudev] + introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) +" +RDEPEND="${COMMON_DEPEND} + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-good:1.0 + + media-plugins/gst-plugins-jpeg:1.0 + media-plugins/gst-plugins-v4l2:1.0 + media-plugins/gst-plugins-vpx:1.0 +" +DEPEND="${COMMON_DEPEND} + $(vala_depend) + app-text/docbook-xml-dtd:4.3 + app-text/yelp-tools + dev-libs/libxml2:2 + >=dev-util/gtk-doc-am-1.14 + >=dev-util/intltool-0.50 + virtual/pkgconfig + x11-proto/xf86vidmodeproto + test? ( dev-libs/glib:2[utils] ) +" + +src_prepare() { + # FIXME: looks like a regression from an underlying library + sed -e 's|\(g_test_add_func.*photo_path.*;\)|/*\1*/|' \ + -e 's|\(g_test_add_func.*video_path.*;\)|/*\1*/|' \ + -i "${S}"/tests/test-libcheese.c || die + + vala_src_prepare + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + GST_INSPECT=$(type -P true) \ + $(use_enable introspection) \ + --disable-lcov \ + --disable-static \ + ITSTOOL=$(type -P true) +} + +src_compile() { + # Clutter-related sandbox violations when USE="doc introspection" and + # FEATURES="-userpriv" (see bug #385917). + unset DISPLAY + gnome2_src_compile +} + +src_test() { + Xemake check +} |