blob: d023a7f10302a343c756e05edc94206d08d23c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/emu10k1/emu10k1-0.20a-r6.ebuild,v 1.2 2004/09/07 17:18:12 mr_bones_ Exp $
IUSE=""
inherit eutils kernel-mod
MY_P="${P/-/-v}"
DESCRIPTION="Drivers, utilities, and effects for Sound Blaster cards (SBLive!, SB512, Audigy)"
SRC_URI="mirror://sourceforge/emu10k1/${MY_P}.tar.bz2"
RESTRICT="nomirror"
HOMEPAGE="http://www.sourceforge.net/projects/emu10k1/"
DEPEND="virtual/linux-sources"
RDEPEND="media-sound/aumix"
KEYWORDS="-* ~x86"
SLOT="${KV}"
LICENSE="GPL-2"
S="${WORKDIR}/${MY_P}"
BUILD_MODULE=0
pkg_setup() {
[ -z "$KV" ] && die "Couldn't detect kernel version. Does /usr/src/linux exist?"
kernel-mod_is_2_4_kernel && BUILD_MODULE=1
return 0
}
src_unpack() {
unpack ${A}
cd ${S}
# Patch for GCC 3.3
epatch ${FILESDIR}/${P}-gcc3.3.patch.gz || die
}
src_compile() {
echo "SEQUENCER_SUPPORT := y" > config
echo "MODVERSIONS := y" >> config
echo "DBGEMU := n" >> config
# Unset ARCH to prevent conflict with 2.6 kernels. See bug #40424
# unset ARCH
if [ $BUILD_MODULE -eq 1 ]
then
export KERNEL_SOURCE=/usr/src/linux
make || die "make failed"
make all || die "make all failed"
fi
make tools || die "make tools failed"
}
src_install() {
insinto /etc/modules.d
newins ${FILESDIR}/modules-emu10k1 emu10k1
if [ $BUILD_MODULE -eq 1 ]
then
# first install the main parts
make DESTDIR=${D} install || die "could not install"
fi
rm -f docs/*patch
dodoc docs/* ${FILESDIR}/README.gentoo
# now fix up the script so it'll install into /usr and not /usr/local
for f in ${S}/utils/{Makefile.config,scripts/emu-script} ; do
cp ${f} ${f}.old
sed -e 's:/usr/local:/usr:g' ${f}.old > ${f}
done
make man_prefix=${D}/usr/share/man DESTDIR=${D} install-tools || die "could not install tools"
# clean up the /usr/etc directory, movind stuff to /usr/bin...
cd ${D}/usr/etc
mv `find -type f -perm +1` ../bin/
mv * ${D}/etc/
cd ${D}
rm -rf ${D}/usr/etc
# add our special fixed audigy-script. Yes, the one in the driver package is b0rked and should
# not be used until you're absolutely sure it's superior to this one. Much thanks to
# Jonathan Boler (tenpin22@blueyonder.co.uk) for this excellent fixed version.
dobin ${FILESDIR}/audigy-script || die
# add wrapper script to handle audigy and emu cards
dobin ${FILESDIR}/emu10k1-script || die
cd ${D}/etc
cp emu10k1.conf ${T}/
{
cat ${FILESDIR}/emu10k1.conf-gentoo-header
cat ${T}/emu10k1.conf
} > emu10k1.conf
# clean up the scripts
dosed 's:$BASE_PATH/etc:/etc:g' /usr/bin/emu-script
dosed 's:\.aumixrc:aumixrc:g' /usr/bin/emu-script
# set tone control defaults to 50 (neutral)
dosed 's:68:50:g' /usr/bin/emu-script
# the audigy script is a local copy in ${FILESDIR} and has already been fixed up.
# change default settings
dosed 's:AC3PASSTHROUGH=no:AC3PASSTHROUGH=yes:' /etc/emu10k1.conf
dosed 's:ANALOG_FRONT_BOOST=no:ANALOG_FRONT_BOOST=yes:' /etc/emu10k1.conf
dosed 's:SURROUND=no:SURROUND=yes:' /etc/emu10k1.conf
}
pkg_postinst() {
#update-modules handles depmod -a for us
if [ -e /sbin/update-modules ]
then
/sbin/update-modules
else
/usr/sbin/update-modules
fi
einfo "In order for the module to work correctly you must"
einfo "Enable the following options in your kernel:"
echo
einfo "Sound/Sound card support (module or builtin)"
einfo "Sound/OSS sound modules (module or builtin)"
echo
einfo "In addition, ensure that the following modules are"
einfo "*not* built in to your kernel, or are at least"
einfo "built as modules are not currently loaded."
echo
einfo "Sound/Creative SBLive! (EMU10K1) (disabled or module)"
einfo "Sound/Creative SBLive! MIDI (disabled or module)"
echo
einfo "If you have not yet done this, rebuild and install"
einfo "your kernel modules and re-emerge this package."
}
|