blob: 6bae3fc6c7c598264e4d5288d57b8cb1dce33f04 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VALA_USE_DEPEND="vapigen"
inherit cmake vala virtualx
DESCRIPTION="Ayatana Application Indicators (Shared Library)"
HOMEPAGE="https://github.com/AyatanaIndicators/ayatana-ido"
SRC_URI="https://github.com/AyatanaIndicators/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3 GPL-3"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
RDEPEND="
>=dev-libs/glib-2.58:2
>=x11-libs/gtk+-3.24:3[introspection]
"
DEPEND="${RDEPEND}"
BDEPEND="
$(vala_depend)
test? ( dev-cpp/gtest )
"
src_prepare() {
cmake_src_prepare
vala_setup
}
src_configure() {
local mycmakeargs+=(
-DVALA_COMPILER="${VALAC}"
-DVAPI_GEN="${VAPIGEN}"
-DENABLE_TESTS="$(usex test)"
)
cmake_src_configure
}
src_test() {
virtx cmake_src_test
}
|