Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/clutter-gst/
Date: Sat, 08 Feb 2020 19:26:19
Message-Id: 1581189939.448f1c59b7c9458da5535d4cb651175a714ebd11.mattst88@gentoo
1 commit: 448f1c59b7c9458da5535d4cb651175a714ebd11
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 19:20:54 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 19:25:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448f1c59
7
8 media-libs/clutter-gst: Remove unnecessary python dep
9
10 configure.ac detects Python and sets HAVE_PYTHON, but the build system
11 never uses that. Above that block in configure.ac is a comment that says
12
13 check for python (pso2h.py needs it)
14
15 but pso2h.py is not used during the build or installed.
16
17 Closes: https://bugs.gentoo.org/706440
18 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
19
20 .../clutter-gst/clutter-gst-3.0.27-r1.ebuild | 55 ++++++++++++++++++++++
21 1 file changed, 55 insertions(+)
22
23 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
24 new file mode 100644
25 index 00000000000..42615b32a54
26 --- /dev/null
27 +++ b/media-libs/clutter-gst/clutter-gst-3.0.27-r1.ebuild
28 @@ -0,0 +1,55 @@
29 +# Copyright 1999-2019 Gentoo Authors
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +GNOME2_LA_PUNT="yes"
34 +
35 +inherit gnome2
36 +
37 +HOMEPAGE="https://blogs.gnome.org/clutter/"
38 +DESCRIPTION="GStreamer integration library for Clutter"
39 +
40 +LICENSE="LGPL-2.1+"
41 +SLOT="3.0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="X debug examples +introspection udev"
44 +
45 +# >=cogl-1.18 provides cogl-2.0-experimental
46 +COMMON_DEPEND="
47 + >=dev-libs/glib-2.20:2
48 + >=media-libs/clutter-1.20:1.0=[X=,introspection?]
49 + >=media-libs/cogl-1.18:1.0=[introspection?]
50 + >=media-libs/gstreamer-1.4:1.0[introspection?]
51 + >=media-libs/gst-plugins-bad-1.4:1.0
52 + >=media-libs/gst-plugins-base-1.4:1.0[introspection?]
53 + introspection? ( >=dev-libs/gobject-introspection-0.6.8:= )
54 + udev? ( dev-libs/libgudev )
55 +"
56 +# uses goom from gst-plugins-good
57 +RDEPEND="${COMMON_DEPEND}
58 + >=media-libs/gst-plugins-good-1.4:1.0
59 + !udev? ( media-plugins/gst-plugins-v4l2 )
60 +"
61 +DEPEND="${COMMON_DEPEND}
62 + dev-util/glib-utils
63 + >=dev-util/gtk-doc-am-1.11
64 + virtual/pkgconfig
65 +"
66 +
67 +src_configure() {
68 + # --enable-gl-texture-upload is experimental
69 + gnome2_src_configure \
70 + --disable-maintainer-flags \
71 + --enable-debug=$(usex debug yes minimum) \
72 + $(use_enable introspection) \
73 + $(use_enable udev)
74 +}
75 +
76 +src_install() {
77 + gnome2_src_install
78 +
79 + if use examples; then
80 + insinto /usr/share/doc/"${PF}"/examples
81 + doins examples/{*.c,*.png,README}
82 + fi
83 +}