Commit c3c20bdd authored by Christos Margiolis's avatar Christos Margiolis
Browse files

sysutils/mixer: Discontinue

PR:		294661
Sponsored by:	The FreeBSD Foundation
parent 924962aa
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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

sysutils/mixer/Makefile

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
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>

sysutils/mixer/files/mixer.sh

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
#!/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

sysutils/mixer/pkg-descr

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
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.