sysutils/mixer: Discontinue

PR:		294661
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Christos Margiolis
2026-06-13 19:20:11 +03:00
parent 924962aa01
commit c3c20bddef
4 changed files with 1 additions and 40 deletions
+1
View File
@@ -5340,3 +5340,4 @@ devel/twiggy||2026-06-02|Archived upstream, no longer maintained, and has an unc
audio/surge-synthesizer-lv2|audio/surge-synthesizer-xt-lv2|2026-06-04|Retire older surge-synthesizer-lv2 in favor of new gen surge-synthesizer-xt-lv2
dns/dnsmasq-devel|dns/dnsmasq|2026-06-05|Discontinued -devel port, use dns/dnsmasq instead
www/surge|ftp/surge|2026-06-05|Switch to a more updated ftp/surge port, which was accidentally added despite www/surge being available (but outdated)
sysutils/mixer||2026-06-13|Discontinued, use /etc/rc.d/mixer
-21
View File
@@ -1,21 +0,0 @@
PORTNAME= mixer
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
MAINTAINER= mwm@mired.org
COMMENT= Startup/shutdown script to preserve mixer settings across reboots
DEPRECATED= End of life, please use the built-in /etc/rc.d/mixer script.
EXPIRATION_DATE=2026-06-15
NO_BUILD= yes
PLIST_FILES= etc/rc.d/mixer.sh
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/mixer.sh ${STAGEDIR}${PREFIX}/etc/rc.d
.include <bsd.port.mk>
-16
View File
@@ -1,16 +0,0 @@
#!/bin/sh
MIXERSTATE=/var/db/mixer-state
case $1 in
start)
[ -r $MIXERSTATE ] && /usr/sbin/mixer `cat $MIXERSTATE` > /dev/null
;;
stop)
/usr/sbin/mixer -s > $MIXERSTATE
;;
*)
echo "usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
-3
View File
@@ -1,3 +0,0 @@
This port installs a simple shellscript in ${PREFIX}/etc/rc.d that saves
the state of the mixer when the system is shut down, and restores it when
the system is rebooted.