You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
# Copyright 1999-2012 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.5.ebuild,v 1.7 2012/06/22 14:28:43 jer 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 arm hppa ppc ppc64 x86"
|
|
IUSE="alsa debug"
|
|
|
|
DEPEND="alsa? ( media-libs/alsa-lib )"
|
|
RDEPEND="${DEPEND}
|
|
media-sound/timidity-freepats"
|
|
|
|
src_prepare() {
|
|
# Workaround for parallel make
|
|
sed -i -e "/^wildmidi_libs/s:=.*:= libWildMidi.la:" "${S}"/src/Makefile.am || 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 {} +
|
|
insinto /etc
|
|
doins "${FILESDIR}"/${PN}.cfg || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "${PN} is using timidity-freepats for midi playback."
|
|
elog "A default configuration file was placed on /etc/${PN}.cfg."
|
|
elog "For more information please read the ${PN}.cfg manpage."
|
|
}
|