blob: dacb69c64847dbd07e614fbcc6e126ce323acdae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..10} )
inherit meson python-r1
DESCRIPTION="SDK for making video editors and more"
HOMEPAGE="http://wiki.pitivi.org/wiki/GES"
SRC_URI="https://gstreamer.freedesktop.org/src/${PN}/${P/gstreamer/gst}.tar.xz"
LICENSE="LGPL-2+"
SLOT="1.0"
KEYWORDS="amd64 x86"
IUSE="+introspection test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="!test? ( test )"
RDEPEND="
${PYTHON_DEPS}
>=dev-libs/glib-2.40.0:2
dev-libs/libxml2:2
>=media-libs/gstreamer-${PV}:1.0[introspection?]
>=media-libs/gst-plugins-base-${PV}:1.0[introspection?]
>=media-libs/gst-plugins-bad-${PV}:1.0[introspection?]
introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
# Some tests are failing
RESTRICT="test"
S="${WORKDIR}"/${P/gstreamer/gst}
src_configure() {
local emesonargs=(
-Ddoc=disabled # hotdoc not packaged
$(meson_feature introspection)
$(meson_feature test tests)
-Dbash-completion=disabled
-Dxptv=disabled
-Dpython=enabled
-Dvalidate=disabled
-Dexamples=disabled
)
meson_src_configure
}
src_install() {
meson_src_install
python_moduleinto gi.overrides
python_foreach_impl python_domodule bindings/python/gi/overrides/GES.py
}
|