blob: 4f44636cf38db47089ed37fdae012a82d5510090 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-0.9.0_rc1-r1.ebuild,v 1.11 2004/04/20 17:12:58 eradicator Exp $
IUSE=""
S="${WORKDIR}/${P/_rc/rc}"
DESCRIPTION="Advanced Linux Sound Architecture tools"
HOMEPAGE="http://www.alsa-project.org"
SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${P/_rc/rc}.tar.bz2"
SLOT="0.9"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
DEPEND=">=media-libs/alsa-lib-0.9.0_rc1
=x11-libs/gtk+-1.2*"
# This is a list of the tools in the package.
#
# By default, all the supported tools will be compiled.
# If you want to only compile for specific tool(s), set ALSA_TOOLS
# environment to a space-separated list of tools that you want to build.
# For example:
#
# env ALSA_TOOLS='as10k1 ac3dec' emerge alsa-tools
#
[ x"${ALSA_TOOLS}" = x ] &&
ALSA_TOOLS="ac3dec as10k1 envy24control sb16_csp seq/sbiload"
src_compile() {
# Some of the tools don't make proper use of CFLAGS, even though
# all of them seem to use autoconf. This needs to be fixed.
local f
for f in ${ALSA_TOOLS}
do
cd "${S}/${f}"
econf || die "./configure failed"
emake || die "Parallel Make Failed"
done
}
src_install() {
local f
for f in ${ALSA_TOOLS}
do
# Install the main stuff
cd "${S}/${f}"
make DESTDIR="${D}" install || die
# Install the text documentation
local doc
for doc in README TODO ChangeLog COPYING AUTHORS
do
if [ -f "${doc}" ]
then
mv "${doc}" "${doc}.`basename ${f}`"
dodoc "${doc}.`basename ${f}`"
fi
done
done
}
|