blob: 426d14572a81d50720ec17516e4ea3034434aaff (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2 meson vala
DESCRIPTION="Manages, extracts and handles media art caches"
HOMEPAGE="https://gitlab.gnome.org/GNOME/libmediaart"
LICENSE="LGPL-2.1+"
SLOT="2.0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="gtk gtk-doc +introspection qt5 vala"
REQUIRED_USE="
^^ ( gtk qt5 )
vala? ( introspection )
"
RDEPEND="
>=dev-libs/glib-2.38.0:2
gtk? ( >=x11-libs/gdk-pixbuf-2.12:2 )
introspection? ( >=dev-libs/gobject-introspection-1.30:= )
qt5? ( dev-qt/qtgui:5 )
"
DEPEND="${RDEPEND}
dev-libs/gobject-introspection-common
dev-util/gtk-doc
virtual/pkgconfig
vala? ( $(vala_depend) )
"
PATCHES=(
"${FILESDIR}"/${PV}-meson-add-introspection-option.patch
"${FILESDIR}"/${PV}-meson-add-vapi-option.patch
)
src_prepare() {
default
use vala && vala_setup
}
src_configure() {
local image_library
use gtk && image_library=gdk-pixbuf
use qt5 && image_library=qt5
local emesonargs=(
-Dimage_library=${image_library}
$(meson_use introspection)
$(meson_use vala vapi)
$(meson_use gtk-doc gtk_doc)
)
meson_src_configure
}
|