diff options
author | John J. Ellis <jje@gentoo.org> | 2003-03-01 14:39:16 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-03-01 14:39:16 +0000 |
commit | 80c5d3274e4f2a13ef0eb71abdf2a383fea9a25b (patch) | |
tree | b72fc677729ccc923dd29cf13461b1445d7ad309 /media-sound/rosegarden | |
parent | fix compile bug - #12656, patch by david mattatall (diff) | |
download | historical-80c5d3274e4f2a13ef0eb71abdf2a383fea9a25b.tar.gz historical-80c5d3274e4f2a13ef0eb71abdf2a383fea9a25b.tar.bz2 historical-80c5d3274e4f2a13ef0eb71abdf2a383fea9a25b.zip |
New package ( ~x86 masked) closes #11737.
Diffstat (limited to 'media-sound/rosegarden')
-rw-r--r-- | media-sound/rosegarden/ChangeLog | 11 | ||||
-rw-r--r-- | media-sound/rosegarden/files/digest-rosegarden-4.0.8.5 | 1 | ||||
-rw-r--r-- | media-sound/rosegarden/rosegarden-4.0.8.5.ebuild | 45 |
3 files changed, 57 insertions, 0 deletions
diff --git a/media-sound/rosegarden/ChangeLog b/media-sound/rosegarden/ChangeLog new file mode 100644 index 000000000000..01fe1d424235 --- /dev/null +++ b/media-sound/rosegarden/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for media-sound/rosegarden +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/rosegarden/ChangeLog,v 1.1 2003/03/01 14:39:16 jje Exp $ + +*rosegarden-4.0.8.5 (01 Mar 2003) + + 01 Mar 2003; jje <jje@gentoo.org> rosegarden-4.0.8.5.ebuild files/digest-rosegarden-4.0.8.5 : + Initial revision, unable to fully test as i don't have the midi hardware. + + Submitted by Marco Correia and Oliver Schoett. + diff --git a/media-sound/rosegarden/files/digest-rosegarden-4.0.8.5 b/media-sound/rosegarden/files/digest-rosegarden-4.0.8.5 new file mode 100644 index 000000000000..2e391958ad23 --- /dev/null +++ b/media-sound/rosegarden/files/digest-rosegarden-4.0.8.5 @@ -0,0 +1 @@ +MD5 fa1d7ec29ce348eeb7e411a6294f7efa rosegarden-4-0.8.5.tar.gz 2425746 diff --git a/media-sound/rosegarden/rosegarden-4.0.8.5.ebuild b/media-sound/rosegarden/rosegarden-4.0.8.5.ebuild new file mode 100644 index 000000000000..d76ab08fdd03 --- /dev/null +++ b/media-sound/rosegarden/rosegarden-4.0.8.5.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 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.8.5.ebuild,v 1.1 2003/03/01 14:39:16 jje Exp $ + + +DESCRIPTION="MIDI and audio sequencer and notation editor." +HOMEPAGE="http://www.all-day-breakfast.com/rosegarden/" +SRC_URI="http://belnet.dl.sourceforge.net/sourceforge/rosegarden/rosegarden-4-0.8.5.tar.gz" + +LICENSE="GPL" +SLOT="0" +KEYWORDS="~x86" + +# NOTE: This package may be compiled with aRt instead of alsa, and with no jack or ladspa support, +# but I don't know how to say that with the IUSE variable. +#IUSE="alsa" + +DEPEND=">=gcc-2.9 + >=kdelibs-3.0 + kdemultimedia + >=qt-3.0 + >=alsa-driver-0.9.0_rc2 + virtual/jack + >=ladspa-sdk-1.0 + >=ladspa-cmt-1.14 + " + +#RDEPEND="" + +S=${WORKDIR}/rosegarden-4-0.8.5 + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-jack \ + --with-ladspa || die "./configure failed" + emake || die +} + +src_install() { + einstall +} |