blob: 61711172f8f8f55907a01e6f62c57aae25eba426 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="GTK+ client for management of the Transmission BitTorrent client, over HTTP RPC"
HOMEPAGE="https://github.com/transmission-remote-gtk/transmission-remote-gtk"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="appindicator debug geoip libproxy rss"
# RESTRICT="test"
# FIXME: bundles rss-glib-0.2.3
RDEPEND="
net-libs/libsoup:3.0
>=dev-libs/glib-2.70:2
>=dev-libs/json-glib-1.2.8
>=x11-libs/gtk+-3.22:3
appindicator? ( dev-libs/libayatana-appindicator )
"
DEPEND="${RDEPEND}
"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_feature appindicator libappindicator)
)
meson_src_configure
}
|