blob: db5591a9ed4b140c2bc9c3f0fa8eeae8f26faf19 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org meson
DESCRIPTION="PolicyKit helper to configure cups with fine-grained privileges"
HOMEPAGE="https://www.freedesktop.org/wiki/Software/cups-pk-helper https://gitlab.freedesktop.org/cups-pk-helper/cups-pk-helper"
SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
RESTRICT="test" # bug #864949
DEPEND="
>=dev-libs/glib-2.36.0:2
>=sys-auth/polkit-0.97
net-print/cups
"
RDEPEND="${DEPEND}
sys-apps/dbus
"
BDEPEND="
>=dev-util/gdbus-codegen-2.36.0
>=dev-util/intltool-0.40.6
virtual/pkgconfig
sys-devel/gettext
"
DOCS=( AUTHORS HACKING NEWS README )
|