forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a2jmidid-8-r2.ebuild
46 lines (37 loc) · 957 Bytes
/
a2jmidid-8-r2.ebuild
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
42
43
44
45
46
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE='threads(+)'
NO_WAF_LIBDIR=1
inherit python-single-r1 toolchain-funcs waf-utils eutils
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"
HOMEPAGE="http://home.gna.org/a2jmidid/"
SRC_URI="http://download.gna.org/a2jmidid/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="dbus"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="media-libs/alsa-lib
virtual/jack
dbus? ( sys-apps/dbus )
${PYTHON_DEPS}"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=(AUTHORS README NEWS internals.txt)
src_prepare() {
# Bug 518382
epatch "${FILESDIR}"/${PN}-link.patch
}
src_configure() {
if use dbus ; then
waf-utils_src_configure
else
waf-utils_src_configure --disable-dbus
fi
}
src_install() {
waf-utils_src_install
python_fix_shebang "${ED}"
}