- Update to 20051021 which features:
* Audigy 2 / Audigy 2 Value fixes, full support for SB0400 Audigy 2 Value * Workaround for bad AC97 'rec' volume emulation * 4.x build fix * rc.d/emuctrl.sh script that saves card parameters * Improved documentation PR: ports/87772 Submitted by: Michael Seyfert <michaels@sdf.lonestar.org> (maintainer) - Install kernel module into /boot/modules instead of /boot/kernel PR: ports/87541 Submitted by: Bjorn Konig <bkoenig@cs.tu-berlin.de> Approved by: Michael Seyfert <michaels@sdf.lonestar.org> (maintainer)
This commit is contained in:
parent
87cb7e1b08
commit
a55f0a98ba
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=146080
4 changed files with 17 additions and 7 deletions
|
@ -6,10 +6,10 @@
|
|||
#
|
||||
|
||||
PORTNAME= emu10kx
|
||||
PORTVERSION= 20050919
|
||||
PORTVERSION= 20051021
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://chibis.persons.gfk.ru/audigy/emu10kx/
|
||||
DISTNAME= ${PORTNAME}-2005-09-19
|
||||
DISTNAME= ${PORTNAME}-2005-10-21
|
||||
|
||||
MAINTAINER= michaels@sdf.lonestar.org
|
||||
COMMENT= SBLive!, Audigy, and Audigy2 driver for FreeBSD
|
||||
|
@ -19,8 +19,11 @@ USE_BZIP2= yes
|
|||
NO_PACKAGE= should be recompiled for a particular FreeBSD kernel
|
||||
|
||||
MAN8= emuctrl.8
|
||||
PLIST_FILES= sbin/emuctrl
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}a
|
||||
PLIST_FILES= sbin/emuctrl etc/rc.d/emuctrl.sh
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
|
||||
do-install:
|
||||
@${SETENV} ${MAKE_ENV} ${MAKE} -C ${WRKSRC} -DMODULES_WITH_WORLD install
|
||||
|
||||
post-install:
|
||||
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (emu10kx-2005-09-19.tar.bz2) = 710b275e176858b5b2478ca53a0ef35c
|
||||
SIZE (emu10kx-2005-09-19.tar.bz2) = 63868
|
||||
MD5 (emu10kx-2005-10-21.tar.bz2) = 823f13ae7513061fb6474328c0dc7690
|
||||
SIZE (emu10kx-2005-10-21.tar.bz2) = 70555
|
||||
|
|
|
@ -19,11 +19,16 @@ if [ ${RESULT} -eq 0 ]; then
|
|||
fi
|
||||
|
||||
# Remove the driver
|
||||
rm /boot/kernel/$DRIVERNAME.ko
|
||||
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
|
||||
#============================================================
|
||||
|
|
|
@ -4,4 +4,6 @@ SBLive!, Audigy, and Audigy2 based cards.
|
|||
This is an alternate driver that you may use instead of the snd_emu10k1
|
||||
driver in the FreeBSD kernel.
|
||||
|
||||
This driver was written by Yuriy Tsibizov.
|
||||
|
||||
WWW: http://chibis.persons.gfk.ru/audigy/
|
||||
|
|
Loading…
Reference in a new issue