aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2023-08-07 07:53:13 +0000
committerJan Beich <jbeich@FreeBSD.org>2023-08-23 15:08:08 +0000
commitbdb7ade9b3d11cfaf59015e5862696a4e323de40 (patch)
tree8c0492e4de52a8f170fc0b63f19d7f223e4d0973
parent759dd1d9268bede36ef83561616c6f9d46d48549 (diff)
downloadports-bdb7ade9b3d11cfaf59015e5862696a4e323de40.tar.gz
ports-bdb7ade9b3d11cfaf59015e5862696a4e323de40.zip
devel/xdg-dbus-proxy: add new port
xdg-dbus-proxy is a filtering proxy for D-Bus connections. It was originally part of the flatpak project, but it has been broken out as a standalone module to facilitate using it in other contexts. https://github.com/flatpak/xdg-dbus-proxy
-rw-r--r--devel/Makefile1
-rw-r--r--devel/xdg-dbus-proxy/Makefile28
-rw-r--r--devel/xdg-dbus-proxy/distinfo3
-rw-r--r--devel/xdg-dbus-proxy/pkg-descr3
4 files changed, 35 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 2727be8e95e6..6bc3b82babda 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -7799,6 +7799,7 @@
SUBDIR += xbyak
SUBDIR += xc3sprog
SUBDIR += xcscope.el
+ SUBDIR += xdg-dbus-proxy
SUBDIR += xdg-user-dirs
SUBDIR += xdg-utils
SUBDIR += xdgpaths
diff --git a/devel/xdg-dbus-proxy/Makefile b/devel/xdg-dbus-proxy/Makefile
new file mode 100644
index 000000000000..003004238bf3
--- /dev/null
+++ b/devel/xdg-dbus-proxy/Makefile
@@ -0,0 +1,28 @@
+PORTNAME= xdg-dbus-proxy
+DISTVERSION= 0.1.5
+CATEGORIES= devel
+
+MAINTAINER= jbeich@FreeBSD.org
+COMMENT= Filtering proxy for D-Bus connections
+WWW= https://github.com/flatpak/xdg-dbus-proxy
+
+LICENSE= LGPL21+
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+TEST_DEPENDS= dbus-daemon:devel/dbus
+
+USES= gnome meson pkgconfig
+USE_GITHUB= yes
+USE_GNOME= glib20
+GH_ACCOUNT= flatpak
+PLIST_FILES= bin/${PORTNAME}
+
+OPTIONS_DEFINE= MANPAGES
+OPTIONS_DEFAULT=MANPAGES
+
+MANPAGES_BUILD_DEPENDS= docbook-xsl>0:textproc/docbook-xsl \
+ xsltproc:textproc/libxslt
+MANPAGES_MESON_ENABLED= man
+MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz
+
+.include <bsd.port.mk>
diff --git a/devel/xdg-dbus-proxy/distinfo b/devel/xdg-dbus-proxy/distinfo
new file mode 100644
index 000000000000..e2045f1432cb
--- /dev/null
+++ b/devel/xdg-dbus-proxy/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1691394793
+SHA256 (flatpak-xdg-dbus-proxy-0.1.5_GH0.tar.gz) = 3c937118f4d011bed26ac9b47e13345d975b394d49908f3e21331090b2e047bb
+SIZE (flatpak-xdg-dbus-proxy-0.1.5_GH0.tar.gz) = 56755
diff --git a/devel/xdg-dbus-proxy/pkg-descr b/devel/xdg-dbus-proxy/pkg-descr
new file mode 100644
index 000000000000..f75b46a71acc
--- /dev/null
+++ b/devel/xdg-dbus-proxy/pkg-descr
@@ -0,0 +1,3 @@
+xdg-dbus-proxy is a filtering proxy for D-Bus connections. It was originally
+part of the flatpak project, but it has been broken out as a standalone module
+to facilitate using it in other contexts.