git: 2a20f670b0af - main - multimedia/btavctpd: add new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 16 Aug 2025 19:19:05 UTC
The branch main has been updated by fuz:
URL: https://cgit.FreeBSD.org/ports/commit/?id=2a20f670b0af61be74c9fa5e2755b5d83f1a39f4
commit 2a20f670b0af61be74c9fa5e2755b5d83f1a39f4
Author: Nico Sonack <nsonack@herrhotzenplotz.de>
AuthorDate: 2025-08-16 07:44:29 +0000
Commit: Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-08-16 19:17:38 +0000
multimedia/btavctpd: add new port
A simple daemon that allows you to remotely control local media
players via Bluetooth.
PR: 288897
---
multimedia/Makefile | 1 +
multimedia/btavctpd/Makefile | 22 ++++++++++++++++++++++
multimedia/btavctpd/distinfo | 3 +++
multimedia/btavctpd/pkg-descr | 5 +++++
4 files changed, 31 insertions(+)
diff --git a/multimedia/Makefile b/multimedia/Makefile
index 1064487abdd2..97d423f15213 100644
--- a/multimedia/Makefile
+++ b/multimedia/Makefile
@@ -22,6 +22,7 @@
SUBDIR += bino
SUBDIR += bitstream
SUBDIR += blind
+ SUBDIR += btavctpd
SUBDIR += butt
SUBDIR += celluloid
SUBDIR += cheese
diff --git a/multimedia/btavctpd/Makefile b/multimedia/btavctpd/Makefile
new file mode 100644
index 000000000000..58e00f2d72c9
--- /dev/null
+++ b/multimedia/btavctpd/Makefile
@@ -0,0 +1,22 @@
+PORTNAME= btavctpd
+DISTVERSION= 1.0.0
+CATEGORIES= multimedia
+
+MAINTAINER= nsonack@herrhotzenplotz.de
+COMMENT= Media-Player remote control daemon via Bluetooth
+WWW= https://github.com/herrhotzenplotz/btavctpd
+
+LICENSE= BSD2CLAUSE
+
+LIB_DEPENDS= libplayerctl.so:multimedia/playerctl
+RUN_DEPENDS= xdotool:x11/xdotool
+
+USES= gnome pkgconfig
+USE_GITHUB= yes
+GH_ACCOUNT= herrhotzenplotz
+USE_GNOME= glib20
+
+PLIST_FILES= bin/btavctpd \
+ share/man/man8/btavctpd.8.gz
+
+.include <bsd.port.mk>
diff --git a/multimedia/btavctpd/distinfo b/multimedia/btavctpd/distinfo
new file mode 100644
index 000000000000..434903e9e2a9
--- /dev/null
+++ b/multimedia/btavctpd/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1755329739
+SHA256 (herrhotzenplotz-btavctpd-1.0.0_GH0.tar.gz) = 3049e1baf93c5d65e7ee167c52ef9165e1480464015e814340b1abfb77bd8c6f
+SIZE (herrhotzenplotz-btavctpd-1.0.0_GH0.tar.gz) = 8484
diff --git a/multimedia/btavctpd/pkg-descr b/multimedia/btavctpd/pkg-descr
new file mode 100644
index 000000000000..f43a1e596c1c
--- /dev/null
+++ b/multimedia/btavctpd/pkg-descr
@@ -0,0 +1,5 @@
+btavctpd is a daemon that allows you to remotely control media players
+on your workstation through the Bluetooth A/V Remote Control Profile.
+Can either emit X11 Keypresses through xdotool or use libplayerctl to
+dynamically detect players and listen for their events or send commands
+to them.