summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 21:04:16 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-02-14 21:04:31 +0100
commit63342f6ce069c644a6dd157ea1e9b620988e4901 (patch)
treed12f4e1c1d32331c24b92fcc7b199a226cb5cab8 /media-sound
parentapp-emulation/dynamips: EAPI-7 bump (diff)
downloadgentoo-63342f6ce069c644a6dd157ea1e9b620988e4901.tar.gz
gentoo-63342f6ce069c644a6dd157ea1e9b620988e4901.tar.bz2
gentoo-63342f6ce069c644a6dd157ea1e9b620988e4901.zip
media-sound/wildmidi: Drop 0.3.13
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/wildmidi/Manifest1
-rw-r--r--media-sound/wildmidi/wildmidi-0.3.13.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/media-sound/wildmidi/Manifest b/media-sound/wildmidi/Manifest
index 9e30ac003bb5..c76b733e91d1 100644
--- a/media-sound/wildmidi/Manifest
+++ b/media-sound/wildmidi/Manifest
@@ -1,2 +1 @@
-DIST wildmidi-0.3.13.tar.gz 132407 BLAKE2B 5f603adb7583d47ca0595a48a385412d09ca8b19e99c93ba474d91076fa17a54e12e08bb39ea73d16c07addeab86e6c9d8b778d19045ef6b7d551d041bbc58fa SHA512 e9ede8a98c97e57a7bd34e63fc725a1b47bbff6b41f5dca101249917f0e7756ce4d93a84b8d5b6f592687fd3deed369c22c727873c9bdd1bea6e8c31fdbb4fdb
DIST wildmidi-0.4.3.tar.gz 196750 BLAKE2B 580903dd1e7dc61193b593f3706d5070ae5cf26394919f8d632098aa0dda14d8d65631c902a6a01d02d046e639df4d66727849954b5d6f76dba8d12235e20b8d SHA512 7e86e998ee97cdf57328e4cf5ef52a64926fd01999879c0eae5b6c823be4e6d116f7026230bd15d209e6616fbc7ba1c29ebd1f3be04735e341ce5c83298f956f
diff --git a/media-sound/wildmidi/wildmidi-0.3.13.ebuild b/media-sound/wildmidi/wildmidi-0.3.13.ebuild
deleted file mode 100644
index dfe904340d1f..000000000000
--- a/media-sound/wildmidi/wildmidi-0.3.13.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils readme.gentoo-r1
-
-DESCRIPTION="Midi processing library and a midi 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 ~hppa ppc ppc64 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() {
- # alsa openal oss only make sense if player is enabled. See CMakeLists.txt
- if ! use player && (use alsa || use openal || use oss); then
- ewarn "The 'alsa', 'openal' and 'oss' use flags only make sense if"
- ewarn "the 'player' use flags is selected and as a result they will be"
- ewarn "ignored in this build"
- fi
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DWANT_ALSA=$(usex alsa)
- -DWANT_OPENAL=$(usex openal)
- -DWANT_OSS=$(usex oss)
- -DWANT_PLAYER=$(usex player)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
-
- find "${D}" -name '*.la' -delete || die
-
- insinto /etc/${PN}/
- doins cfg/${PN}.cfg
-
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- if [[ -e "${ROOT}"/etc/${PN}.cfg ]]; then
- elog
- elog "Old /etc/${PN}.cfg detected!"
- elog "Please migrate your configuration file to"
- elog "/etc/${PN}/ directory which is now the default"
- elog "location for the ${PN} configuration file."
- elog
- fi
-}