diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-11-29 13:27:14 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-11-29 13:27:14 +0000 |
commit | de9716acba2feda0a678372c347e1ad8e268a692 (patch) | |
tree | 298b2087fd36ba21fea553ad2fe4440b5a358ce4 /media-sound/seq24 | |
parent | Fix bug with the expansion limit patch (diff) | |
download | gentoo-2-de9716acba2feda0a678372c347e1ad8e268a692.tar.gz gentoo-2-de9716acba2feda0a678372c347e1ad8e268a692.tar.bz2 gentoo-2-de9716acba2feda0a678372c347e1ad8e268a692.zip |
version bump
(Portage version: 2.2_rc16/cvs/Linux 2.6.27.7 x86_64)
Diffstat (limited to 'media-sound/seq24')
-rw-r--r-- | media-sound/seq24/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/seq24/seq24-0.9.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/media-sound/seq24/ChangeLog b/media-sound/seq24/ChangeLog index 7f76d2113be1..09a66628ab87 100644 --- a/media-sound/seq24/ChangeLog +++ b/media-sound/seq24/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/seq24 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/ChangeLog,v 1.32 2008/10/10 12:44:41 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/ChangeLog,v 1.33 2008/11/29 13:27:14 aballier Exp $ + +*seq24-0.9.0 (29 Nov 2008) + + 29 Nov 2008; Alexis Ballier <aballier@gentoo.org> +seq24-0.9.0.ebuild: + version bump *seq24-0.8.7-r1 (10 Oct 2008) diff --git a/media-sound/seq24/seq24-0.9.0.ebuild b/media-sound/seq24/seq24-0.9.0.ebuild new file mode 100644 index 000000000000..af735a916881 --- /dev/null +++ b/media-sound/seq24/seq24-0.9.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/seq24-0.9.0.ebuild,v 1.1 2008/11/29 13:27:14 aballier Exp $ + +EAPI=2 + +inherit eutils + +DESCRIPTION="Seq24 is a loop based MIDI sequencer with focus on live performances." +HOMEPAGE="https://edge.launchpad.net/seq24/" +SRC_URI="http://edge.launchpad.net/seq24/trunk/${PV}/+download/${P}.tar.bz2" + +IUSE="jack lash" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=media-libs/alsa-lib-0.9.0[midi] + >=dev-cpp/gtkmm-2.4 + >=dev-libs/libsigc++-2.2 + jack? ( >=media-sound/jack-audio-connection-kit-0.90.0 ) + lash? ( >=media-sound/lash-0.5.0 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + $(use_enable jack jack-support) \ + $(use_enable lash) \ + --disable-alsatest \ + || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README RTC SEQ24 +} |