blob: 9d0451edb2c9122d6b714fcc96df5c509087af09 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ecamegapedal/ecamegapedal-0.4.2.ebuild,v 1.7 2004/06/24 23:57:59 agriffis Exp $
DESCRIPTION="Ecamegapedal is a real-time effect processor."
HOMEPAGE="http://www.wakkanet.fi/~kaiv/ecamegapedal/"
SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="jack"
DEPEND="x11-libs/qt \
jack? ( media-sound/jack-audio-connection-kit ) \
media-sound/ecasound"
src_compile() {
econf `use_enable jack` || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc COPYING NEWS README TODO
}
|