blob: 4c0ec17f103d1d1d65363e63f9969934affab4a6 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2-multilib
DESCRIPTION="Collection of GSettings schemas for GNOME desktop"
HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas"
LICENSE="LGPL-2.1+"
SLOT="0"
IUSE="+introspection"
KEYWORDS="~amd64"
RDEPEND="
>=dev-libs/glib-2.31:2[${MULTILIB_USEDEP}]
introspection? ( >=dev-libs/gobject-introspection-1.31.0[${MULTILIB_USEDEP}] )
"
DEPEND="${RDEPEND}
sys-devel/gettext[${MULTILIB_USEDEP}]
>=dev-util/intltool-0.40
virtual/pkgconfig
"
src_configure() {
DOCS="AUTHORS HACKING NEWS README"
gnome2-multilib_src_configure $(use_enable introspection)
}
|