diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2024-05-05 09:32:43 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2024-05-05 09:32:43 +0200 |
commit | e619c85743b315011fdda0d6a33c91cd2f87d809 (patch) | |
tree | 72ce2b2df3ab32e5bc15af2fc153353a627b1212 /media-sound/linuxsampler | |
parent | media-sound/sidplayfp: dropped obsolete 2.6.2 (diff) | |
download | gentoo-e619c85743b315011fdda0d6a33c91cd2f87d809.tar.gz gentoo-e619c85743b315011fdda0d6a33c91cd2f87d809.tar.bz2 gentoo-e619c85743b315011fdda0d6a33c91cd2f87d809.zip |
media-sound/linuxsampler: dropped obsolete 2.3.0
Bug: https://bugs.gentoo.org/931013
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/linuxsampler')
-rw-r--r-- | media-sound/linuxsampler/Manifest | 1 | ||||
-rw-r--r-- | media-sound/linuxsampler/linuxsampler-2.3.0.ebuild | 78 |
2 files changed, 0 insertions, 79 deletions
diff --git a/media-sound/linuxsampler/Manifest b/media-sound/linuxsampler/Manifest index cc526bb5aeca..9896842fe4ee 100644 --- a/media-sound/linuxsampler/Manifest +++ b/media-sound/linuxsampler/Manifest @@ -1,2 +1 @@ -DIST linuxsampler-2.3.0.tar.bz2 1267738 BLAKE2B 5f9e7bf2f6c0bfe8131cc04d79b3df5c08c16c7332315e5ff39c16aa3565f88bc3a58b63db4162c8e2f4430ae1a091c928cecba2385fc181f6c7b46a72c4ae88 SHA512 5a59e3443ee6d3056fc274386ae222e7db72a8c6e316a1c39c5d631bae86ec6a61745b20e594cf569c10f5a6bd6eb0d09b3956cce67072175ff60a770a4b7e5b DIST linuxsampler-2.3.1.tar.bz2 1267554 BLAKE2B e07866d1ccaadf4bb95e4bb17f4b643b8dec5ff8c3b363b0e55b7fcb1383be59d2a22c84536db3e31f7c67467ef293a01147120294884005bd1d4c1f5b6c326b SHA512 160820d1a1c44169bb84fd5b6380256af31e42701ff2d2e4394df8c680fa0b6f9b8a21047ff2ec757009f53d1694bafdf254067d8aae9994c244aaf247a5890d diff --git a/media-sound/linuxsampler/linuxsampler-2.3.0.ebuild b/media-sound/linuxsampler/linuxsampler-2.3.0.ebuild deleted file mode 100644 index c9fd88b64354..000000000000 --- a/media-sound/linuxsampler/linuxsampler-2.3.0.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Software audio sampler engine with professional grade features" -HOMEPAGE="https://www.linuxsampler.org/" -SRC_URI="https://download.linuxsampler.org/packages/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="alsa doc jack lv2 sf2 sqlite" -REQUIRED_USE="|| ( alsa jack )" - -RDEPEND=" - >=media-libs/libgig-4.4.0 - media-libs/libsndfile[-minimal] - alsa? ( media-libs/alsa-lib ) - jack? ( virtual/jack ) - lv2? ( media-libs/lv2 ) - sqlite? ( dev-db/sqlite ) -" -DEPEND="${RDEPEND} - media-libs/dssi - media-libs/ladspa-sdk -" -BDEPEND=" - virtual/pkgconfig - doc? ( app-text/doxygen ) -" - -PATCHES=( - "${FILESDIR}/${PN}-2.0.0-nptl-hardened.patch" - "${FILESDIR}/${PN}-2.0.0-lv2-automagic.patch" - "${FILESDIR}/${PN}-2.1.1-fix-yyterror-not-declared.patch" -) - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_prepare() { - default - # Force regeneration of the file to let it build with all bison - # versions, bug #556204 - rm src/network/lscpparser.cpp || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-arts-driver - --disable-static - $(use_enable alsa alsa-driver) - $(use_enable jack jack-driver) - $(use_enable lv2) - $(use_enable sqlite instruments-db) - $(use_enable sf2 sf2-engine) - ) - econf "${myeconfargs[@]}" -} - -src_compile() { - # bug #666738 - emake -j1 - use doc && emake docs -} - -src_install() { - use doc && local HTML_DOCS=( doc/html/. ) - default - find "${D}" -name '*.la' -delete || die - - # lscp files conflict with nilfs-utils, bug #556330 - mv "${D}/usr/bin/lscp" "${D}/usr/bin/lscp-${PN}" || die - mv "${D}/usr/share/man/man1/lscp.1" "${D}/usr/share/man/man1/lscp-${PN}.1" || die -} |