diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-05-12 19:14:42 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-05-12 19:14:59 -0400 |
commit | a77f715beab04827be1ba9067c3037b77e2625e8 (patch) | |
tree | 80de7f473fb4f411819ff19f343c15141ac7aeb4 /sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild | |
parent | sys-apps/portage: add pypi upstream metadata (diff) | |
download | gentoo-a77f715beab04827be1ba9067c3037b77e2625e8.tar.gz gentoo-a77f715beab04827be1ba9067c3037b77e2625e8.tar.bz2 gentoo-a77f715beab04827be1ba9067c3037b77e2625e8.zip |
sys-apps/xdg-dbus-proxy: Version bump to 0.1.4
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild')
-rw-r--r-- | sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild new file mode 100644 index 000000000000..23744c014949 --- /dev/null +++ b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 ~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=( + -Dman=enabled + $(meson_use test tests) + ) + meson_src_configure +} |