media-sound/wildmidi: drop 0.4.5

Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44227
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Azamat H. Hackimov
2025-10-17 21:55:23 +03:00
committed by Sam James
parent 3e07611584
commit 6587fc49b9
2 changed files with 0 additions and 60 deletions

View File

@@ -1,2 +1 @@
DIST wildmidi-0.4.5.tar.gz 197793 BLAKE2B a0b43e19b4e4ced6c4f536dd5e1ac313acd26ad0c3c9deed7068181666a175f4dfdf5cb522d70fdaf0636cc4b3b1af3cedfda54a6c048b05e828a4d1ad185b77 SHA512 0229914ecc60091b649b790a82ad5e755a2b9dfab7443fb3e3c19f4ae64b82817cafe74d78c27f05c68c3c8fb30092c96da732d27ff82fbd7dd7d577facc23d6
DIST wildmidi-0.4.6.tar.gz 199971 BLAKE2B 797d50e9e1a4ca52c6ddf610964dfa993833d7c78cbe12d333364e29940af1e334ef764730e94b1f09b3d5930e46fa1c5c4e8070026bf7b892dcdbdb9f0af1f6 SHA512 b7259578c1b334de13b49e27aef32ad43e41bc04f569601b765ecea789b8da536d07afdb581986b7c91de552db2a625b13d061e52a2c8c51652f3cf3d1a30000

View File

@@ -1,59 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake readme.gentoo-r1
DESCRIPTION="MIDI processing library and player using the GUS patch set"
HOMEPAGE="http://www.mindwerks.net/projects/wildmidi/"
SRC_URI="https://github.com/Mindwerks/${PN}/archive/${P}.tar.gz"
LICENSE="GPL-3+ LGPL-3+"
SLOT="0"
KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv x86"
IUSE="+alsa openal oss +player"
DEPEND="
player? (
alsa? ( media-libs/alsa-lib )
openal? ( media-libs/openal )
)
"
RDEPEND="${DEPEND}
media-sound/timidity-freepats
"
REQUIRED_USE="player? ( ^^ ( alsa oss openal ) )"
DOC_CONTENTS="${PN} is using timidity-freepats for midi playback.
A default configuration file was placed on /etc/${PN}/${PN}.cfg.
For more information please read the ${PN}.cfg manpage."
S="${WORKDIR}/${PN}-${P}"
src_prepare() {
cmake_src_prepare
# Fix location of media-sound/timidity-freepats
# See #749759
sed -i -e "s:midi/freepats:timidity/freepats:" cfg/wildmidi.cfg || die
}
src_configure() {
local mycmakeargs=(
-DWANT_ALSA=$(usex alsa)
-DWANT_OPENAL=$(usex openal)
-DWANT_OSS=$(usex oss)
-DWANT_PLAYER=$(usex player)
)
cmake_src_configure
}
src_install() {
cmake_src_install
insinto /etc/${PN}/
doins cfg/wildmidi.cfg
readme.gentoo_create_doc
}