blob: 99f61c455d5ace1e28adc86ab09257c7287dc0b4 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sweep/sweep-0.9.3-r1.ebuild,v 1.3 2012/02/11 20:09:34 nixnut Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="Audio editor and live playback tool"
HOMEPAGE="http://www.metadecks.org/software/sweep/"
SRC_URI="mirror://sourceforge/sweep/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 ~sparc ~x86"
IUSE="alsa ladspa vorbis mp3 libsamplerate speex"
RDEPEND=">=media-libs/libsndfile-1.0
>=x11-libs/gtk+-2.4.0:2
>=dev-libs/glib-2.2.0:2
alsa? ( media-libs/alsa-lib )
libsamplerate? ( media-libs/libsamplerate )
speex? ( media-libs/speex )
vorbis? ( media-libs/libogg media-libs/libvorbis )
mp3? ( media-libs/libmad )
ladspa? ( media-libs/ladspa-sdk )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
DOCS=(AUTHORS ChangeLog NEWS README TODO)
LANGS="de el es_ES fr hu it ja pl ru"
for X in ${LANGS}; do
IUSE="${IUSE} linguas_${X}"
done
src_prepare() {
epatch "${FILESDIR}"/${P}-configure.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable vorbis oggvorbis) \
$(use_enable mp3 mad) \
$(use_enable speex) \
$(use_enable libsamplerate src) \
$(use_enable alsa)
}
|