diff --git a/MOVED b/MOVED index 18e1bd17e8ed..9d0d78f7ffa4 100644 --- a/MOVED +++ b/MOVED @@ -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 diff --git a/sysutils/mixer/Makefile b/sysutils/mixer/Makefile deleted file mode 100644 index bfec060a0472..000000000000 --- a/sysutils/mixer/Makefile +++ /dev/null @@ -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 diff --git a/sysutils/mixer/files/mixer.sh b/sysutils/mixer/files/mixer.sh deleted file mode 100644 index 39a764fda987..000000000000 --- a/sysutils/mixer/files/mixer.sh +++ /dev/null @@ -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 diff --git a/sysutils/mixer/pkg-descr b/sysutils/mixer/pkg-descr deleted file mode 100644 index 1cd92dc4849e..000000000000 --- a/sysutils/mixer/pkg-descr +++ /dev/null @@ -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.