#!/bin/sh [ "$2" != "DEINSTALL" ] && exit 0 #============================================================ # DEINSTALL #============================================================ DRIVERNAME=snd_emu10kx # Unload the driver kldstat -n $DRIVERNAME > /dev/null 2>&1; RESULT=$? if [ ${RESULT} -eq 0 ]; then kldunload -n $DRIVERNAME > /dev/null 2>&1; RESULT=$? if [ ${RESULT} -ne 0 ]; then echo "ERROR: Failed to unload the $DRIVERNAME module!" echo "ERROR: Is $DRIVERNAME.ko in use?" exit 1; fi fi # Remove the driver rm /boot/modules/$DRIVERNAME.ko # Remove the driver from loader.conf grep ${DRIVERNAME}_load /boot/loader.conf > /dev/null 2>&1; RESULT=$? if [ ${RESULT} -eq 0 ]; then sed -e /${DRIVERNAME}_load.*/d -i.orig /boot/loader.conf fi # Tell the user about the state files if [ -f /var/db/emu10kx0-state ]; then echo "If you will not be using this port anymore, please remove " /var/db/emu10kx[0-9]-state " manually." fi #============================================================ git-data/cgit.png' alt='cgit logo'/> index : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/audio/hs-ALUT/Makefile
Commit message (Expand)AuthorAgeFilesLines
* - Stagify lang/ghc and all the Haskell Cabal portsGabor Pali2014-01-101-2/+1
* - Fix a run-time problem with lang/ghc on FreeBSD 10.0 and later, caused byGabor Pali2014-01-101-1/+1
* Convert the tree to USES=openalAntoine Brodin2013-12-261-1/+1
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...Baptiste Daroussin2013-09-201-0/+1
* - Update The Glorious Glasgow Haskell Compiler to version 7.6.3Gabor Pali2013-06-051-3/+2
* - Update Haskell ports from the development repositoryGabor Pali2013-03-301-1/+1
* - Fix breakage in the DYNAMIC-enabled ports triggered by the recentGabor Pali2013-02-061-1/+1
* - Update The Glorious Glasgow Haskell Compiler to version 7.4.2Gabor Pali2012-12-201-6/+2
* - Teach the Haskell Cabal ports to use the new options frameworkGabor Pali2012-08-031-1/+1
* - Update The Glorious Glasgow Haskell Compiler to version 7.4.1Gabor Pali2012-06-041-1/+1
* - Please welcome GHC 7.0.4Gabor Pali2012-02-131-2/+1
* Bump PORTREVISION of all ports dependent on lang/ghc as duringAshish SHUKLA2011-05-261-1/+1
* - Please welcome GHC 7.0.3Ashish SHUKLA2011-05-09