diff options
Diffstat (limited to 'media-sound/seq24/seq24-0.9.2.ebuild')
-rw-r--r-- | media-sound/seq24/seq24-0.9.2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-sound/seq24/seq24-0.9.2.ebuild b/media-sound/seq24/seq24-0.9.2.ebuild new file mode 100644 index 000000000000..244d3b8d0976 --- /dev/null +++ b/media-sound/seq24/seq24-0.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/seq24/seq24-0.9.2.ebuild,v 1.1 2010/12/27 01:16:44 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 + >=dev-cpp/gtkmm-2.4 + >=dev-libs/libsigc++-2.2:2 + jack? ( >=media-sound/jack-audio-connection-kit-0.90 ) + lash? ( >=media-sound/lash-0.5 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + $(use_enable jack) \ + $(use_enable lash) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README RTC SEQ24 + newicon src/pixmaps/seq24_32.xpm seq24.xpm + make_desktop_entry seq24 +} |