blob: 76046d47ce4a4977c22b09a13a7ed7190fc676d4 (
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
53
54
55
56
57
58
59
60
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/terminatorx/terminatorx-3.82.ebuild,v 1.17 2011/03/29 07:55:48 radhermit Exp $
EAPI=2
inherit gnome2 eutils
MY_P=${P/terminatorx/terminatorX}
DESCRIPTION='realtime audio synthesizer that allows you to "scratch" on digitally sampled audio data'
HOMEPAGE="http://www.terminatorx.org/"
SRC_URI="http://www.terminatorx.org/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="alsa mad vorbis sox"
RDEPEND="alsa? ( media-libs/alsa-lib )
mad? ( media-sound/madplay )
vorbis? ( media-libs/libvorbis )
sox? ( media-sound/sox
media-sound/mpg123 )
>=x11-libs/gtk+-2.2:2
>=dev-libs/glib-2.2:2
x11-libs/libXi
x11-libs/libXxf86dga
dev-libs/libxml2
media-libs/audiofile
media-libs/ladspa-sdk
media-libs/ladspa-cmt
app-text/scrollkeeper
media-libs/liblrdf"
DEPEND="${RDEPEND}
dev-util/pkgconfig
x11-proto/xproto
x11-proto/inputproto
x11-proto/xf86dgaproto"
S=${WORKDIR}/${MY_P}
src_prepare() {
# we need the omf fix, or else we get access violation
# errors related to sandbox
gnome2_omf_fix "${S}/doc/terminatorX-manual/C/Makefile.in"
}
src_configure() {
econf \
$(use_enable alsa) \
$(use_enable mad) \
$(use_enable vorbis) \
$(use_enable sox)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
newicon gnome-support/terminatorX-app.png terminatorX.png
make_desktop_entry terminatorX terminatorX terminatorX AudioVideo
}
|