blob: 1019f69d461105971c8baa712b53ed3258b9d108 (
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
42
43
44
45
46
47
48
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_REQ_USE="threads(+)"
inherit meson python-single-r1
DESCRIPTION="Daemon for exposing ALSA sequencer applications in JACK MIDI system"
HOMEPAGE="https://a2jmidid.ladish.org"
SRC_URI="https://dl.ladish.org/a2jmidid/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE="dbus"
REQUIRED_USE="dbus? ( ${PYTHON_REQUIRED_USE} )"
BDEPEND="
virtual/pkgconfig
"
CDEPEND="
media-libs/alsa-lib
virtual/jack
dbus? ( sys-apps/dbus ${PYTHON_DEPS} )
"
RDEPEND="${CDEPEND}"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS.rst NEWS.rst README internals.txt )
src_configure() {
local emesonargs=(
-Ddisable-dbus=$(usex dbus false true)
)
meson_src_configure
}
src_install() {
meson_src_install
if use dbus; then
python_fix_shebang "${ED}"
fi
}
|