From d61ab0f964be87f5bebfff8805195909f95b9d23 Mon Sep 17 00:00:00 2001 From: Clockwork6400 Date: Wed, 1 Feb 2023 23:33:40 +0200 Subject: [PATCH] sysutils/sndy: new port sndy is an audio switching program that allows you to redirect sound output to any port of your computer. The buttons in the program toggle the sound output to a different device. The scroll bar can be used to change the volume level. PR: 268570 Reviewed by: diizzy, grahamperrin Approved by: eduardo (mentor) Differential Revision: https://reviews.freebsd.org/D38518 --- sysutils/Makefile | 1 + sysutils/sndy/Makefile | 29 +++++++++++++++++++++++++++++ sysutils/sndy/distinfo | 3 +++ sysutils/sndy/pkg-descr | 4 ++++ 4 files changed, 37 insertions(+) create mode 100644 sysutils/sndy/Makefile create mode 100644 sysutils/sndy/distinfo create mode 100644 sysutils/sndy/pkg-descr diff --git a/sysutils/Makefile b/sysutils/Makefile index 2ecc08b9ac65d..d20b747854809 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1352,6 +1352,7 @@ SUBDIR += smug SUBDIR += snap SUBDIR += snapraid + SUBDIR += sndy SUBDIR += snmp_exporter SUBDIR += snooze SUBDIR += sockaddr diff --git a/sysutils/sndy/Makefile b/sysutils/sndy/Makefile new file mode 100644 index 0000000000000..b70ae205d5caf --- /dev/null +++ b/sysutils/sndy/Makefile @@ -0,0 +1,29 @@ +PORTNAME= sndy +DISTVERSION= 0.0.4 +CATEGORIES= sysutils audio tcl + +MAINTAINER= Clockwork6400@protonmail.com +COMMENT= Sound Switcher +WWW= https://github.com/Clockwork6400/sndy + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= shebangfix tcl tk + +USE_GITHUB= yes +GH_ACCOUNT= Clockwork6400 + +SHEBANG_FILES= sndy +tk_OLD_CMD+= /usr/local/bin/wish8.6 + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/sndy \ + share/applications/sndy.desktop + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/sndy ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/sndy.desktop ${STAGEDIR}${PREFIX}/share/applications +.include diff --git a/sysutils/sndy/distinfo b/sysutils/sndy/distinfo new file mode 100644 index 0000000000000..b36556a78f5ee --- /dev/null +++ b/sysutils/sndy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1676403681 +SHA256 (Clockwork6400-sndy-0.0.4_GH0.tar.gz) = 2cbd7a7a3c26b0f95b757fb65e9a4d7e937b9b900986cca0c455a903b89ce604 +SIZE (Clockwork6400-sndy-0.0.4_GH0.tar.gz) = 2972 diff --git a/sysutils/sndy/pkg-descr b/sysutils/sndy/pkg-descr new file mode 100644 index 0000000000000..276c7c94750d0 --- /dev/null +++ b/sysutils/sndy/pkg-descr @@ -0,0 +1,4 @@ +sndy is an audio switching program that allows you to redirect sound +output to any port of your computer. The buttons in the program toggle +the sound output to a different device. The scroll bar can be used to +change the volume level.