blob: 89a283d3c2a9c38c1535dfff3744357b6cda2749 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sweep/sweep-0.8.2-r1.ebuild,v 1.16 2005/12/09 22:04:25 chainsaw Exp $
inherit eutils
DESCRIPTION="audio editor and live playback tool"
HOMEPAGE="http://www.metadecks.org/software/sweep/"
SRC_URI="http://www.metadecks.org/software/sweep/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc ~alpha amd64"
IUSE="vorbis alsa nls"
DEPEND=">=media-libs/libsndfile-1.0
=x11-libs/gtk+-1.2*
>=media-sound/madplay-0.14.2b
dev-libs/tdb
media-libs/libsamplerate
media-libs/speex
vorbis? ( media-libs/libogg media-libs/libvorbis )
alsa? ( media-libs/alsa-lib )
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-alsa.patch
}
src_compile() {
local myconf
myconf=""
# --enable-experimental Add to myconf if you want this stuff
use vorbis || myconf="${myconf} --disable-oggvorbis"
use alsa && myconf="${myconf} --enable-alsa"
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || die "econf failed"
emake
}
src_install() {
einstall
}
pkg_postinst() {
einfo
einfo "Sweep can use ladspa plugins,"
einfo "emerge ladspa-sdk and ladspa-cmt if you want them."
einfo
}
|