blob: c548aa55ad80e171223d2b1a28a2b6ab77afae50 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
GCONF_DEBUG="yes"
inherit gnome2
DESCRIPTION="GObject to SQLite object mapper library"
HOMEPAGE="https://wiki.gnome.org/Projects/Gom"
LICENSE="LGPL-2+"
SLOT="0"
IUSE="+introspection test"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
RDEPEND="
>=dev-db/sqlite-3.7:3
>=dev-libs/glib-2.36:2
introspection? ( >=dev-libs/gobject-introspection-1.30.0 )
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.14
>=dev-util/intltool-0.40.0
sys-devel/gettext
virtual/pkgconfig
x11-libs/gdk-pixbuf
"
src_configure() {
gnome2_src_configure \
--disable-static \
$(use_enable introspection) \
$(use_enable test glibtest)
}
|