blob: 8df2c626f04131bfcb588eb6d5a40cd8f8ed4be7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-1.0.11.ebuild,v 1.6 2006/05/01 02:59:45 josejx Exp $
inherit gnuconfig eutils flag-o-matic autotools
MY_P="${P/_rc/rc}"
DESCRIPTION="Advanced Linux Sound Architecture tools"
HOMEPAGE="http://www.alsa-project.org"
SRC_URI="mirror://alsaproject/tools/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0.9"
KEYWORDS="~amd64 ~mips ppc ppc64 sparc x86"
IUSE="fltk gtk"
DEPEND=">=media-libs/alsa-lib-1.0.0
virtual/alsa
fltk? ( =x11-libs/fltk-1.1* )
gtk? ( =x11-libs/gtk+-1.2* )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
# This is a list of the tools in the package.
# 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.
#
# 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
#
if [ -z "${ALSA_TOOLS}" ]; then
ALSA_TOOLS="ac3dec as10k1 hdsploader mixartloader seq/sbiload \
sscape_ctl us428control usx2yloader vxloader"
if use fltk; then
ALSA_TOOLS="${ALSA_TOOLS} hdspconf hdspmixer"
fi
if use gtk; then
ALSA_TOOLS="${ALSA_TOOLS} echomixer envy24control rmedigicontrol"
fi
# sb16_csp won't build on ppc64 _AND_ ppc (and is not needed)
if use !ppc64 && use !ppc; then
ALSA_TOOLS="${ALSA_TOOLS} sb16_csp"
fi
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-asneeded.patch"
for dir in echomixer envy24control rmedigicontrol; do
pushd ${dir} &> /dev/null
eautomake
popd &> /dev/null
done
gnuconfig_update
elibtoolize
}
src_compile() {
if use fltk; then
# hdspmixer requires fltk
append-ldflags "-L/usr/$(get_libdir)/fltk-1.1"
append-flags "-I/usr/include/fltk-1.1"
fi
# hdspmixer is missing depconf - copy from the hdsploader directory
cp ${S}/hdsploader/depcomp ${S}/hdspmixer/
local f
for f in ${ALSA_TOOLS}
do
cd "${S}/${f}"
econf || die "econf failed"
make || die "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 AUTHORS
do
if [ -f "${doc}" ]
then
mv "${doc}" "${doc}.`basename ${f}`"
dodoc "${doc}.`basename ${f}`"
fi
done
done
}
|