media-sound/jalv: drop 1.6.8

Closes: https://bugs.gentoo.org/955258
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-11-23 18:28:57 +01:00
parent 47c2d0c3e2
commit 4583163d71
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E

View File

@ -1,62 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson qmake-utils flag-o-matic xdg
DESCRIPTION="Simple but fully featured LV2 host for Jack"
HOMEPAGE="https://drobilla.net/software/jalv.html"
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64"
IUSE="gtk +jack portaudio qt5 test"
REQUIRED_USE="^^ ( jack portaudio )"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/serd
dev-libs/sord
media-libs/lilv
media-libs/lv2
media-libs/sratom
media-libs/suil
gtk? ( x11-libs/gtk+:3 )
jack? ( virtual/jack )
portaudio? ( media-libs/portaudio )
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
)
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
"
DOCS=( AUTHORS NEWS README.md )
PATCHES=(
"${FILESDIR}/${P}-qt5-fPIC.patch"
)
src_configure() {
use qt5 && export PATH="$(qt5_get_bindir):${PATH}"
local emesonargs=(
$(meson_feature gtk gtk3)
$(meson_feature jack)
$(meson_feature portaudio)
$(meson_feature qt5)
$(meson_feature test tests)
)
meson_src_configure
}
src_compile() {
append-flags -fPIC
meson_src_compile
}