media-sound/a2jmidid: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-12-20 14:02:39 +01:00
parent 99c26ec5b2
commit 0151ee82d4
No known key found for this signature in database
GPG Key ID: 8E32347AF4055AE8
2 changed files with 0 additions and 52 deletions

View File

@ -1,2 +1 @@
DIST a2jmidid-12.tar.bz2 309227 BLAKE2B 8041bda96cf2bfe3d51cdf9162857e1c484e95581dd132fbe3f582022ecc5ba89bfbe005884646ac8064a62285c16195f2066aadb6841660c2935b245f8bd3b2 SHA512 1556dc5d9ca0a241177246de16f251db815d29ed3bc50b0db7ebededa1d34e5432fddfc7bc85643864ebf641fe95d9040462787962753d60adb8f02a1e94f815
DIST a2jmidid-9.tar.gz 47925 BLAKE2B ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62 SHA512 5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c

View File

@ -1,51 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_REQ_USE="threads(+)"
inherit meson python-single-r1
DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"
HOMEPAGE="https://github.com/jackaudio/a2jmidid"
SRC_URI="https://github.com/jackaudio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE="dbus python"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
BDEPEND="
virtual/pkgconfig
"
CDEPEND="
media-libs/alsa-lib
virtual/jack
dbus? ( sys-apps/dbus )
python? ( ${PYTHON_DEPS} )
"
RDEPEND="${CDEPEND}"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS.rst CHANGELOG.rst README.rst internals.txt )
src_configure() {
local emesonargs=(
-Ddisable-dbus=$(usex dbus false true)
)
meson_src_configure
}
src_install() {
meson_src_install
if use python; then
python_fix_shebang "${ED}"
else
rm "${ED}/usr/bin/a2j_control" || die
fi
}