summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2023-01-21 10:37:36 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2023-01-21 10:37:54 +0100
commit3f14cf00db084f94bc5bc8b2209bc3e27db4dc95 (patch)
tree4acd548a9e0b56f53d20bcd618a003bd93546a3b /media-libs/tse3
parentdev-ruby/multi_json: Stabilize 1.15.0 x86, #891555 (diff)
downloadgentoo-3f14cf00db084f94bc5bc8b2209bc3e27db4dc95.tar.gz
gentoo-3f14cf00db084f94bc5bc8b2209bc3e27db4dc95.tar.bz2
gentoo-3f14cf00db084f94bc5bc8b2209bc3e27db4dc95.zip
media-libs/tse3: dropped obsolete 0.3.1-r1
Closes: https://bugs.gentoo.org/891279 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/tse3')
-rw-r--r--media-libs/tse3/tse3-0.3.1-r1.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/media-libs/tse3/tse3-0.3.1-r1.ebuild b/media-libs/tse3/tse3-0.3.1-r1.ebuild
deleted file mode 100644
index 9c10927b83eb..000000000000
--- a/media-libs/tse3/tse3-0.3.1-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools flag-o-matic
-
-DESCRIPTION="TSE3 Sequencer library"
-HOMEPAGE="http://TSE3.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
- mirror://gentoo/${P}-awe_voice.h.tbz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE="alsa oss"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.2.7-size_t-64bit.patch"
- "${FILESDIR}/${PN}-0.2.7-gcc4.patch"
- "${FILESDIR}/${P}-parallelmake.patch"
- "${FILESDIR}/${P}+gcc-4.3.patch"
-)
-
-src_prepare() {
- default
- mv configure.in configure.ac || die "Moving configure.in -> .ac failed"
- if use oss; then
- cp "${WORKDIR}"/awe_voice.h src/ || die "copy failed"
- append-cppflags -DHAVE_AWE_VOICE_H
- fi
-
- eautoreconf
-}
-
-src_configure() {
- local myconf
-
- use alsa || myconf="${myconf} --without-alsa"
- use oss || myconf="${myconf} --without-oss"
-
- econf \
- --without-doc-install \
- --without-aRts \
- ${myconf}
-}
-
-src_install() {
- HTML_DOCS=( doc/*.{html,gif,png} )
- default
- dodoc doc/History
-}