blob: b111481b9f7f6afbcaf0a34c15de99ce19e72363 (
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
57
58
59
60
61
62
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
GCONF_DEBUG="yes"
PYTHON_COMPAT=( python3_{8..11} )
inherit gnome.org meson python-r1
DESCRIPTION="GObject to SQLite object mapper library"
HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
IUSE="gtk-doc +introspection python test"
RESTRICT="!test? ( test )"
REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} )"
RDEPEND="
>=dev-db/sqlite-3.7:3
>=dev-libs/glib-2.36:2
introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
python? ( ${PYTHON_DEPS}
>=dev-python/pygobject-3.16:3[${PYTHON_USEDEP}] )
"
DEPEND="${RDEPEND}
gtk-doc? ( dev-util/gtk-doc
app-text/docbook-xml-dtd:4.3 )
virtual/pkgconfig
test? ( x11-libs/gdk-pixbuf:2 )
"
src_prepare() {
default
sed -i -e '/subdir.*python/d' bindings/meson.build || die
# drop test building and deps if not enabled
if ! use test; then
sed -i -e '/gdkpixbuf_dep/d' meson.build || die
sed -i -e '/subdir(.*tests.*)/d' meson.build || die
fi
}
src_configure() {
local emesonargs=(
$(meson_use introspection enable-introspection)
$(meson_use gtk-doc enable-gtk-doc)
)
meson_src_configure
}
src_install() {
docinto examples
dodoc examples/*.py
meson_src_install
if use python; then
python_foreach_impl python_domodule bindings/python/gi
fi
}
|