blob: 9acca74396fcb12ebb197b9768f232673f9dd82f (
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
51
52
53
54
55
56
57
58
59
60
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Official examples and tools from the JACK project"
HOMEPAGE="https://jackaudio.org/"
SRC_URI="https://github.com/jackaudio/jack-example-tools/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+ zalsa? ( GPL-3+ )"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv x86"
IUSE="alsa jack-net jack-netsource opus +readline sndfile zalsa"
RDEPEND="
virtual/jack
alsa? (
media-libs/alsa-lib
media-libs/libsamplerate
)
jack-net? (
|| (
media-sound/jack2[libsamplerate]
media-video/pipewire[jack-sdk(-)]
)
)
jack-netsource? (
media-libs/libsamplerate
opus? ( media-libs/opus[custom-modes] )
)
readline? ( sys-libs/readline:= )
sndfile? ( media-libs/libsndfile )
zalsa? (
media-libs/alsa-lib
media-libs/zita-alsa-pcmi
media-libs/zita-resampler:=
)
!<media-sound/jack-audio-connection-kit-0.126.0
!<media-sound/jack2-1.9.21"
DEPEND="${RDEPEND}"
DOCS=( CHANGELOG.md README.md )
src_configure() {
local emesonargs=(
$(meson_feature alsa alsa_in_out)
$(meson_feature jack{-,_}net)
$(meson_feature jack{-,_}netsource)
$(meson_feature readline readline_support)
$(meson_feature sndfile jack_rec)
$(meson_feature zalsa)
$(usex jack-netsource \
$(meson_feature opus opus_support) \
-Dopus_support=disabled)
)
meson_src_configure
}
|