blob: 820d474f50b516969fb99781ee2528ca4f88b690 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ams-1.8.8_rc2.ebuild,v 1.4 2008/04/11 21:03:12 maekke Exp $
inherit eutils qt3
DESCRIPTION="Alsa Modular Software Synthesizer"
HOMEPAGE="http://alsamodular.sourceforge.net"
SRC_URI="mirror://sourceforge/alsamodular/${P/_/-}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND="media-libs/alsa-lib
media-sound/jack-audio-connection-kit
=x11-libs/qt-3*
=sci-libs/fftw-2*
media-libs/ladspa-sdk
media-libs/ladspa-cmt
media-plugins/mcp-plugins
media-plugins/swh-plugins
media-libs/libclalsadrv"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${P/_/-}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-spectrumscreen.patch
}
src_compile() {
eqmake3
emake || die "emake failed."
}
src_install() {
dobin ${PN}
dodoc README THANKS
insinto /usr/share/${PN}
doins -r demos instruments tutorial *.mid
}
pkg_postinst() {
elog "Upstream HOMEPAGE also suggests following packages to be installed:"
elog "- media-plugins/amb-plugins"
elog "- media-plugins/rev-plugins"
elog "- media-plugins/vco-plugins"
}
|