blob: 3e19e352600a59628a45490ffd24486060b31bd6 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/rosegarden/rosegarden-4.0.9.ebuild,v 1.8 2004/01/24 08:01:01 raker Exp $
MY_P=${P/\./-}
DESCRIPTION="MIDI and audio sequencer and notation editor."
HOMEPAGE="http://www.all-day-breakfast.com/rosegarden/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=kde-base/kdelibs-3.0
kde-base/kdemultimedia
>=x11-libs/qt-3
virtual/alsa
virtual/jack
>=media-libs/ladspa-sdk-1.0
>=media-libs/ladspa-cmt-1.14"
S=${WORKDIR}/${MY_P}
src_compile() {
econf \
--with-jack \
--with-ladspa \
|| die "./configure failed"
emake || die
}
src_install() {
einstall || die
}
|