blob: cfc5d9b348f6ac24870900c552175ae99611c7c6 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/wildmidi/wildmidi-0.2.3.4.ebuild,v 1.5 2010/08/14 21:01:45 ssuominen Exp $
EAPI=3
inherit base autotools
DESCRIPTION="Midi processing library and a midi player using the gus patch set"
HOMEPAGE="http://wildmidi.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug"
RDEPEND="alsa? ( media-libs/alsa-lib )"
DEPEND="${RDEPEND}"
src_prepare() {
#Respect LDFLAGS. Reported upstream. Bug id: 3045017
sed -i -e "/^LDFLAGS/s:=:=\"${LDFLAGS}\":" configure.ac || die
eautoreconf
}
src_configure() {
econf \
--disable-werror \
$(use_enable debug) \
$(use alsa || echo --with-oss)
}
src_install() {
base_src_install
find "${D}" -name '*.la' -exec rm -f {} +
}
|