media-libs/clutter-gst: Remove unnecessary python dep
authorMatt Turner <mattst88@gentoo.org>
Sat, 8 Feb 2020 19:20:54 +0000 (11:20 -0800)
committerMatt Turner <mattst88@gentoo.org>
Sat, 8 Feb 2020 19:25:39 +0000 (11:25 -0800)
configure.ac detects Python and sets HAVE_PYTHON, but the build system
never uses that. Above that block in configure.ac is a comment that says

check for python (pso2h.py needs it)

but pso2h.py is not used during the build or installed.

Closes: https://bugs.gentoo.org/706440
Signed-off-by: Matt Turner <mattst88@gentoo.org>
media-libs/clutter-gst/clutter-gst-3.0.27-r1.ebuild [new file with mode: 0644]

diff --git a/media-libs/clutter-gst/clutter-gst-3.0.27-r1.ebuild b/media-libs/clutter-gst/clutter-gst-3.0.27-r1.ebuild
new file mode 100644 (file)
index 0000000..42615b3
--- /dev/null
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2
+
+HOMEPAGE="https://blogs.gnome.org/clutter/"
+DESCRIPTION="GStreamer integration library for Clutter"
+
+LICENSE="LGPL-2.1+"
+SLOT="3.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="X debug examples +introspection udev"
+
+# >=cogl-1.18 provides cogl-2.0-experimental
+COMMON_DEPEND="
+       >=dev-libs/glib-2.20:2
+       >=media-libs/clutter-1.20:1.0=[X=,introspection?]
+       >=media-libs/cogl-1.18:1.0=[introspection?]
+       >=media-libs/gstreamer-1.4:1.0[introspection?]
+       >=media-libs/gst-plugins-bad-1.4:1.0
+       >=media-libs/gst-plugins-base-1.4:1.0[introspection?]
+       introspection? ( >=dev-libs/gobject-introspection-0.6.8:= )
+       udev? ( dev-libs/libgudev )
+"
+# uses goom from gst-plugins-good
+RDEPEND="${COMMON_DEPEND}
+       >=media-libs/gst-plugins-good-1.4:1.0
+       !udev? ( media-plugins/gst-plugins-v4l2 )
+"
+DEPEND="${COMMON_DEPEND}
+       dev-util/glib-utils
+       >=dev-util/gtk-doc-am-1.11
+       virtual/pkgconfig
+"
+
+src_configure() {
+       # --enable-gl-texture-upload is experimental
+       gnome2_src_configure \
+               --disable-maintainer-flags \
+               --enable-debug=$(usex debug yes minimum) \
+               $(use_enable introspection) \
+               $(use_enable udev)
+}
+
+src_install() {
+       gnome2_src_install
+
+       if use examples; then
+               insinto /usr/share/doc/"${PF}"/examples
+               doins examples/{*.c,*.png,README}
+       fi
+}