mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
- Catch up with recent changes in -CURRENT;
- add a dependency on snd_pcm in -STABLE; - refresh the info message; - maintainer have been graduated (Congrats Alexander!) - host distfiles at a temporary location and update his e-mail accordingly. Submitted by: sf, maintainer
This commit is contained in:
parent
d6fa7b6678
commit
657ab0b207
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=44303
@ -7,12 +7,12 @@
|
|||||||
|
|
||||||
PORTNAME= aureal-kmod
|
PORTNAME= aureal-kmod
|
||||||
PORTVERSION= 1.5
|
PORTVERSION= 1.5
|
||||||
PORTREVISION= 2
|
PORTREVISION= 3
|
||||||
CATEGORIES= audio
|
CATEGORIES= audio
|
||||||
MASTER_SITES= http://www.cis.ohio-state.edu/~matey/au88x0/
|
MASTER_SITES= http://home.columbus.rr.com/amatey/au88x0/
|
||||||
DISTNAME= au88x0-${PORTVERSION}_${PORTREVISION}
|
DISTNAME= au88x0-${PORTVERSION}_${PORTREVISION}
|
||||||
|
|
||||||
MAINTAINER= matey@cis.ohio-state.edu
|
MAINTAINER= lx@matey.org
|
||||||
|
|
||||||
NO_PACKAGE= Should be in sync with the kernel to work correctly
|
NO_PACKAGE= Should be in sync with the kernel to work correctly
|
||||||
|
|
||||||
@ -64,8 +64,8 @@ MAKE_ENV+= HAVE_KOBJ_PCM=1
|
|||||||
|
|
||||||
.if ${OSVERSION} > 500000
|
.if ${OSVERSION} > 500000
|
||||||
# FreeBSD 5-CURRENT
|
# FreeBSD 5-CURRENT
|
||||||
.if ${VERSION_SOUND_C_CURRENT} < 40
|
.if ${VERSION_SOUND_C_CURRENT} < 52
|
||||||
BROKEN= "Base system is outdated. This port needs -CURRENT after newpcm megacommit (built after 3/24/2001)"
|
BROKEN= "Base system is outdated. This port needs -CURRENT after 6/17/2001."
|
||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MD5 (au88x0-1.1_3.tar.gz) = 811026b4fd105b5b9e6a0ebfdc83b75a
|
MD5 (au88x0-1.1_3.tar.gz) = 811026b4fd105b5b9e6a0ebfdc83b75a
|
||||||
MD5 (au88x0-1.3_1.tar.gz) = ec49c6e62847f6a0da318fea8c954917
|
MD5 (au88x0-1.3_1.tar.gz) = ec49c6e62847f6a0da318fea8c954917
|
||||||
MD5 (au88x0-1.3_2.tar.gz) = 266a8ba37778bfd1ea4007407f733540
|
MD5 (au88x0-1.3_2.tar.gz) = 266a8ba37778bfd1ea4007407f733540
|
||||||
MD5 (au88x0-1.5_2.tar.gz) = 59c17f9d252b7859ad2431cd651ed04b
|
MD5 (au88x0-1.5_3.tar.gz) = fa401f56925ea7793fb4238c354a44b7
|
||||||
|
@ -38,13 +38,11 @@ case "$1" in
|
|||||||
echo ""
|
echo ""
|
||||||
exit 64
|
exit 64
|
||||||
fi
|
fi
|
||||||
/sbin/kldload snd_pcm.ko
|
|
||||||
/sbin/kldload ${LIBDIR}/${DRIVERFILE}
|
/sbin/kldload ${LIBDIR}/${DRIVERFILE}
|
||||||
echo -n " aureal-kmod"
|
echo -n " aureal-kmod"
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
/sbin/kldunload ${DRIVERFILE}
|
/sbin/kldunload ${DRIVERFILE}
|
||||||
/sbin/kldunload snd_pcm.ko
|
|
||||||
echo -n " aureal-kmod"
|
echo -n " aureal-kmod"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
@ -1,17 +1,20 @@
|
|||||||
|
|
||||||
$FreeBSD$
|
$FreeBSD$
|
||||||
|
|
||||||
--- Makefile.inc.orig Tue Jan 16 20:33:37 2001
|
--- Makefile.inc.orig Thu Jun 21 22:34:06 2001
|
||||||
+++ Makefile.inc Tue Jan 16 20:35:06 2001
|
+++ Makefile.inc Thu Jun 21 22:37:50 2001
|
||||||
@@ -0,0 +1,11 @@
|
@@ -0,0 +1,14 @@
|
||||||
+.PATH: /sys/dev/sound/pci ${WRKSRC}
|
+.PATH: /sys/dev/sound/pci ${WRKSRC}
|
||||||
+
|
+
|
||||||
+KMODDIR = ${PREFIX}/lib/au88x0
|
+KMODDIR= ${PREFIX}/lib/au88x0
|
||||||
+KMOD = snd_au88${MODEL}
|
+KMOD= snd_au88${MODEL}
|
||||||
+SRCS += au88x0.c
|
+.if ${OSVERSION} < 500000
|
||||||
+SRCS += device_if.h bus_if.h isa_if.h pci_if.h
|
+KMODDEPS= snd_pcm
|
||||||
+.if ${OSVERSION} > 500000 || defined(HAVE_KOBJ_PCM)
|
|
||||||
+SRCS += ac97_if.h channel_if.h feeder_if.h mixer_if.h
|
|
||||||
+.endif
|
+.endif
|
||||||
+OBJS = ${WRKSRC}/asp${MODEL}.o
|
+SRCS+= au88x0.c
|
||||||
+CFLAGS += -I${WRKSRC}
|
+SRCS+= device_if.h bus_if.h isa_if.h pci_if.h
|
||||||
|
+.if ${OSVERSION} > 500000 || defined(HAVE_KOBJ_PCM)
|
||||||
|
+SRCS+= ac97_if.h channel_if.h feeder_if.h mixer_if.h
|
||||||
|
+.endif
|
||||||
|
+OBJS= ${WRKSRC}/asp${MODEL}.o
|
||||||
|
+CFLAGS+= -I${WRKSRC}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
FreeBSD Driver for Aureal Vortex based soundcards.
|
FreeBSD Driver for Aureal Vortex based soundcards.
|
||||||
|
|
||||||
WWW: http://www.cis.ohio-state.edu/~matey/au88x0/
|
WWW: http://home.columbus.rr.com/amatey/au88x0/
|
||||||
|
@ -1,10 +1,21 @@
|
|||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
You can load the module by typing (as root of course):
|
To use the driver, make a copy of %%PREFIX%%/etc/rc.d/aureal.sh.sample under
|
||||||
|
%%PREFIX%%/etc/rc.d/aureal.sh and do: chmod +x %%PREFIX%%/etc/rc.d/aureal.sh.
|
||||||
|
|
||||||
# kldload %%PREFIX%%/lib/au88x0/snd_au88X0.ko
|
To load the driver run (as root):
|
||||||
|
|
||||||
where X is 1, 2 or 3 depending on which Aureal chipset do you have - au8810
|
# %%PREFIX%%/etc/rc.d/aureal.sh start
|
||||||
(Vortex Advantage), au8820 (Vortex 1) or au8830 (Vortex 2) correspondingly.
|
|
||||||
|
To unload it:
|
||||||
|
|
||||||
|
# %%PREFIX%%/etc/rc.d/aureal.sh stop
|
||||||
|
|
||||||
|
It'll also load the driver automatically when the system is started.
|
||||||
|
|
||||||
|
In case it fails to detect the type of your Vortex soundcard correctly,
|
||||||
|
edit this script and set "CARD=" to 88X0 where X is 1, 2 or 3 depending
|
||||||
|
on which Aureal chipset you have - au8810 (Vortex Advantage), au8820
|
||||||
|
(Vortex 1) or au8830 (Vortex 2) correspondingly.
|
||||||
|
|
||||||
Please note that you also need to have a `snd_pcm.ko' module either already
|
Please note that you also need to have a `snd_pcm.ko' module either already
|
||||||
loaded or placed into appropriate location for modules on your system (default
|
loaded or placed into appropriate location for modules on your system (default
|
||||||
@ -13,9 +24,7 @@ install snd_pcm by doing:
|
|||||||
|
|
||||||
# cd /sys/modules/sound/pcm/ && make all install
|
# cd /sys/modules/sound/pcm/ && make all install
|
||||||
|
|
||||||
Please also note that module for 4.1-STABLE system is untested, so please use it
|
Report problems to Alexander Matey <lx@matey.org>.
|
||||||
with caution and if possible please report if it works for you to
|
|
||||||
Alexander Matey <matey@cis.ohio-state.edu>.
|
|
||||||
|
|
||||||
Thanks and enjoy!
|
Thanks and enjoy!
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user