blob: 45bf464c1982e443e94b130a490b374e5571b719 (
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
49
50
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
HOMEPAGE="https://drobilla.net/software/patchage"
if [[ ${PV} == 9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
else
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
KEYWORDS="amd64 x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="alsa jack jack-dbus test"
RESTRICT="!test? ( test )"
BDEPEND="
virtual/pkgconfig
"
RDEPEND="dev-cpp/glibmm:2
dev-cpp/gtkmm:2.4
media-libs/ganv
alsa? ( media-libs/alsa-lib )
jack? ( virtual/jack )
jack-dbus? (
dev-libs/dbus-glib
sys-apps/dbus
)"
DEPEND="${RDEPEND}
dev-libs/boost
>=dev-libs/libfmt-9:="
DOCS=( AUTHORS NEWS README.md )
src_configure() {
local emesonargs=(
$(meson_feature alsa)
$(meson_feature jack)
$(meson_feature jack-dbus jack_dbus)
$(meson_feature test tests)
)
meson_src_configure
}
|