media-sound/patchage: fixed test use flag

Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc 2025-01-29 11:12:10 +01:00
parent 6528477186
commit 1dffb25b5a
No known key found for this signature in database
GPG Key ID: 65D0F770B26B469C

View File

@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -24,6 +24,7 @@ RESTRICT="!test? ( test )"
BDEPEND="
virtual/pkgconfig
"
# tests also need autoship package but that's not packaged in gentoo
RDEPEND="dev-cpp/glibmm:2
dev-cpp/gtkmm:2.4
media-libs/ganv
@ -32,7 +33,12 @@ RDEPEND="dev-cpp/glibmm:2
jack-dbus? (
dev-libs/dbus-glib
sys-apps/dbus
)"
)
test? (
dev-util/cppcheck
dev-util/reuse
)
"
DEPEND="${RDEPEND}
dev-libs/boost
>=dev-libs/libfmt-9:="
@ -44,7 +50,7 @@ src_configure() {
$(meson_feature alsa)
$(meson_feature jack)
$(meson_feature jack-dbus jack_dbus)
$(meson_feature test tests)
$(meson_use test lint)
)
meson_src_configure
}