blob: 541ae818e671f0aefcb930e7a0627a26d965d527 (
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
|
# Copyright 1999-2008 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.ebuild,v 1.3 2008/01/29 08:43:37 corsair Exp $
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 ~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 sys-libs/libedit )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
eerror ""
eerror "To be able to build ${CATEGORY}/${PN} with ALSA support you"
eerror "need to have built media-libs/alsa-lib with midi USE flag."
die "Missing midi USE flag on media-libs/alsa-lib"
fi
}
src_unpack() {
unpack ${A}
elibtoolize
}
src_compile() {
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"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|