blob: 5bd82a85687805879236cf62a5c21128fccbd6ca (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-midi/xmms-midi-0.03.ebuild,v 1.7 2004/04/16 12:17:55 lv Exp $
inherit gnuconfig
DESCRIPTION="Timidity++ Dependent MIDI Plugun for XMMS"
HOMEPAGE="http://ban.joh.cam.ac.uk/~cr212/xmms-midi/"
SRC_URI="http://ban.joh.cam.ac.uk/~cr212/xmms-midi/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~amd64"
DEPEND="media-sound/xmms
media-sound/timidity++"
src_compile() {
gnuconfig_update
econf \
--prefix=/usr/lib
--with-xmms-prefix=/usr/include/xmms
emake || die
}
src_install() {
make DESTDIR=${D} libdir=/usr/lib/xmms/Input install || die
dodoc AUTHORS COPYING NEWS README
}
pkg_postinst() {
if [ ! -f /etc/timidity.cfg ]
then
einfo "*** WARNING: XMMS will play all MIDI files silently until a"
einfo "working timidity.cfg has been placed in /etc!"
fi
}
|