gentoo-ebuilds/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.6.ebuild
Sam James 25dd538634
sys-apps/xdg-dbus-proxy: add 0.1.6
Signed-off-by: Sam James <sam@gentoo.org>
2025-02-16 07:53:14 +00:00

37 lines
741 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Filtering proxy for D-Bus connections"
HOMEPAGE="https://github.com/flatpak/xdg-dbus-proxy"
SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/glib-2.40:2
"
DEPEND="${RDEPEND}
test? ( sys-apps/dbus )
"
BDEPEND="
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
-Dinstalled_tests=false
-Dman=enabled
$(meson_use test tests)
)
meson_src_configure
}