summaryrefslogtreecommitdiff
path: root/sys-libs/snapd-glib/snapd-glib-1.65-r1.ebuild
blob: 558bca6c7442be572f246ec9d57f7fb7a6cdc291 (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
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit meson vala

DESCRIPTION="glib library for communicating with snapd"
HOMEPAGE="https://snapcraft.io/"
SRC_URI="https://github.com/snapcore/snapd-glib/releases/download/${PV}/${P}.tar.xz"

LICENSE="LGPL-3"
SLOT="0/1"
KEYWORDS="~amd64"

IUSE="doc introspection qml qt5 qt6 vala"
REQUIRED_USE="
	qml? ( || ( qt5 qt6 ) )
	vala? ( introspection )
"

BDEPEND="
	virtual/pkgconfig
	sys-devel/gettext
	qt5? ( dev-qt/linguist-tools:5 )
	qt6? ( dev-qt/qttools:6[linguist] )
"

DEPEND="
	dev-libs/json-glib
	dev-libs/glib:2
	dev-util/glib-utils
	net-libs/libsoup:3.0
	doc? ( dev-util/gtk-doc )
	introspection? ( dev-libs/gobject-introspection )
	qml? (
		qt5? ( dev-qt/qtdeclarative:5 )
		qt6? ( dev-qt/qtdeclarative:6 )
	)
	qt5? (
		dev-qt/qtcore:5
		dev-qt/qtnetwork:5
		dev-qt/qtwidgets:5
	)
	qt6? (
		dev-qt/qtbase:6[network,widgets]
	)
	vala? ( $(vala_depend) )
"

RDEPEND="${DEPEND}
	app-containers/snapd
"

PATCHES=(
	# https://github.com/snapcore/snapd-glib/pull/152
	"${FILESDIR}/${P}-install-missing-header.patch"
)

pkg_setup() {
	vala_setup
}

src_configure() {
	local emesonargs=(
		"$(meson_use doc docs)"
		"$(meson_use introspection)"
		"$(meson_use qml qml-bindings)"
		"$(meson_use vala vala-bindings)"
		-Dsoup2=false
	)

	if use qt5; then
		emesonargs+=(
			-Dqt5=true
			-Dqt6=false
		)
	elif use qt6; then
		emesonargs+=(
			-Dqt5=false
			-Dqt6=true
		)
	else
		emesonargs+=(
			-Dqt5=false
			-Dqt6=false
		)
	fi

	meson_src_configure
}