blob: 53be190038908c1bf56c3adf9526c9fa5f41b534 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r1.ebuild,v 1.10 2009/12/23 20:00:42 jer Exp $
EAPI=2
inherit eutils libtool
DESCRIPTION="LASH Audio Session Handler"
HOMEPAGE="http://www.nongnu.org/lash/"
SRC_URI="http://download.savannah.gnu.org/releases/lash/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ppc ppc64 sparc x86"
IUSE="alsa debug gtk python"
RDEPEND="alsa? ( media-libs/alsa-lib )
media-sound/jack-audio-connection-kit
dev-libs/libxml2
gtk? ( >=x11-libs/gtk+-2.0 )
python? ( dev-lang/python )
|| ( sys-libs/readline dev-libs/libedit )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
python? ( >=dev-lang/swig-1.3.31 )"
src_prepare() {
epatch "${FILESDIR}/${P}-glibc2.8.patch"
elibtoolize
}
src_configure() {
local myconf
# Yet-another-broken-configure: --enable-pylash would disable it.
use python || myconf="${myconf} --disable-pylash"
econf \
$(use_enable alsa alsa-midi) \
$(use_enable gtk gtk2) \
$(use_enable debug) \
${myconf} \
--disable-dependency-tracking \
|| die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|