blob: 30c0398c00e817062b853fed10f1bedef3bdab42 (
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
78
79
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
VALA_MIN_API_VERSION="0.16"
VALA_USE_DEPEND="vapigen"
PYTHON_COMPAT=( python2_7 )
inherit gnome2 python-any-r1 vala multilib-minimal
DESCRIPTION="Compatibility library for accessing secrets"
HOMEPAGE="https://wiki.gnome.org/Projects/GnomeKeyring"
LICENSE="LGPL-2+ GPL-2+" # tests are GPL-2
SLOT="0"
IUSE="debug +introspection test vala"
RESTRICT="!test? ( test )"
REQUIRED_USE="vala? ( introspection )"
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris"
RDEPEND="
>=dev-libs/glib-2.16.0:2[${MULTILIB_USEDEP}]
>=dev-libs/libgcrypt-1.2.2:0=[${MULTILIB_USEDEP}]
>=sys-apps/dbus-1[${MULTILIB_USEDEP}]
>=gnome-base/gnome-keyring-3.1.92
introspection? ( >=dev-libs/gobject-introspection-1.30.0 )
"
DEPEND="${RDEPEND}
dev-util/gtk-doc-am
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
test? ( ${PYTHON_DEPS} $(python_gen_any_dep '
dev-python/pygobject:2[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]') )
vala? ( $(vala_depend) )
"
python_check_deps() {
if use test; then
has_version "dev-python/pygobject:2[${PYTHON_USEDEP}]" &&
has_version "dev-python/dbus-python[${PYTHON_USEDEP}]"
fi
}
pkg_setup() {
use test && python-any-r1_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}"/${PV}-vala-0.42-compat.patch
use vala && vala_src_prepare
gnome2_src_prepare
# FIXME: Remove silly CFLAGS, report upstream
sed -e 's:CFLAGS="$CFLAGS -g:CFLAGS="$CFLAGS:' \
-e 's:CFLAGS="$CFLAGS -O0:CFLAGS="$CFLAGS:' \
-i configure.ac configure || die "sed failed"
}
multilib_src_configure() {
ECONF_SOURCE="${S}" gnome2_src_configure \
$(multilib_native_use_enable vala)
if multilib_is_native_abi; then
ln -s "${S}"/docs/reference/gnome-keyring/html docs/reference/gnome-keyring/html || die
fi
}
multilib_src_install() {
gnome2_src_install
}
multilib_src_test() {
unset DBUS_SESSION_BUS_ADDRESS
dbus-launch emake check || die "tests failed"
}
|