blob: 867c796ded0b2d43cd723df6033a5849ee8c171f (
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
35
36
37
38
39
40
41
|
# Copyright 1999-2012 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-r1.ebuild,v 1.2 2012/03/28 07:35:42 ago Exp $
EAPI=4
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="jack lash"
RDEPEND="media-libs/alsa-lib
>=dev-cpp/gtkmm-2.4: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"
DOCS=( AUTHORS ChangeLog README RTC SEQ24 )
src_prepare() {
epatch "${FILESDIR}"/${P}-lash-fix.patch
}
src_configure() {
econf \
$(use_enable jack) \
$(use_enable lash)
}
src_install() {
default
newicon src/pixmaps/seq24_32.xpm seq24.xpm
make_desktop_entry seq24
}
|