blob: 303c74ef8ff7f10c2c4dc653cd1b9de5c6c8caa1 (
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.6.ebuild,v 1.2 2004/02/25 12:49:33 caleb Exp $
DESCRIPTION="MIDI and audio sequencer and notation editor."
HOMEPAGE="http://www.all-day-breakfast.com/rosegarden/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-4-0.9.6.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}/${PN}-4-0.9.6
src_compile() {
addwrite ${QTDIR}/etc/settings
econf \
--with-jack \
--with-ladspa \
|| die "./configure failed"
emake || die
}
src_install() {
einstall || die
}
|