blob: 02b56970cb0480b1332c036eda8fc33839b930c1 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/swami/swami-0.9.4.ebuild,v 1.3 2007/08/23 17:43:44 drac Exp $
DESCRIPTION="an instrument editor for MIDI music composition and a sampler frontend"
HOMEPAGE="http://swami.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="=x11-libs/gtk+-1.2*
>=media-sound/fluidsynth-1
>=media-libs/audiofile-0.2
>=media-libs/libsndfile-1
>=dev-libs/popt-1.5"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf --disable-gtktest --disable-audiofiletest
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README
}
|