blob: 718bd302f0f0aed1285b484e7247d61f45a70568 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
GCONF_DEBUG="yes"
PYTHON_COMPAT=( python{3_4,3_5} )
inherit gnome2 python-r1
DESCRIPTION="GObject to SQLite object mapper library"
HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="+introspection python"
REQUIRED_IUSE="python? ( ${PYTHON_REQUIRED_USE} introspection )"
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}
>=dev-util/gtk-doc-am-1.14
>=dev-util/intltool-0.40.0
sys-devel/gettext
virtual/pkgconfig
x11-libs/gdk-pixbuf:2
"
# TODO: make gdk-pixbuf properly optional with USE=test
pkg_setup() {
use python && python_setup
}
src_prepare() {
gnome2_src_prepare
use python && python_copy_sources
}
src_configure() {
# glibtest is a relic from AM_PATH_GLIB macro
local myconf=(
--disable-static
--disable-glibtest
)
gnome2_src_configure \
${myconf[@]} \
--disable-python \
$(use_enable introspection)
if use python ; then
python_foreach_impl run_in_build_dir \
gnome2_src_configure \
${myconf[@]} \
--enable-python
fi
}
src_install() {
gnome2_src_install
if use python ; then
docinto examples
dodoc examples/*.py
python_foreach_impl run_in_build_dir \
emake DESTDIR="${D}" install-overridesPYTHON
fi
}
|