From d1854d52f5f2fec387452eddf821813673f004b6 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Wed, 21 Mar 2018 20:51:01 +0100 Subject: media-libs/stk: remove old. Closes: https://github.com/gentoo/gentoo/pull/7538 --- media-libs/stk/Manifest | 1 - media-libs/stk/stk-4.4.4-r1.ebuild | 62 -------------------------------------- 2 files changed, 63 deletions(-) delete mode 100644 media-libs/stk/stk-4.4.4-r1.ebuild diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest index c556aabf9a46..2fb039c80a55 100644 --- a/media-libs/stk/Manifest +++ b/media-libs/stk/Manifest @@ -1,3 +1,2 @@ -DIST stk-4.4.4.tar.gz 6181713 BLAKE2B ffd0128b8875d4ed54a8fa8d31aa8a7b5602e5b4cde7f3017e4febd1f9c7fcfc63cc4153bccbabb612a6bff2aa3e80efeddad2a77f6e4288ec3722c5ced87634 SHA512 e36c43a20e95eb86ed0335ae17df23c1a672562656738496f9e2e5654a825292c4235e04774fcb0356d47a775b7d7af6b4fd63c9d151ab7f2f9195bb5f728e37 DIST stk-4.5.0.tar.gz 2466803 BLAKE2B 30e73179000a581c66a4e80fa00aaea481675b6779b18ec70619e7767884a23f0aa969c172c737cf2b24927d14c3bb91107750ae07b20e868177eb82c2ce3f9b SHA512 a8a19e171093735052d797ef29a6a287dc6753fa726e451865250364dfd22f43b190aa03498ec94b99f3dc137ef951aa85e2f2f3509c74cedada6eedb5a31785 DIST stk-4.5.1.tar.gz 2413113 BLAKE2B 5eedf936f26acd3e2f377a198b252ee36bcdbb642f0649c0db6c453beb670a1fc725c94af78ff3e075f50068ae6927b628de0174dba598191ed9f9d2f074c17c SHA512 c4c05edfb49b269d5d2518c06abad8e636c4f67a8598f5a03d406bbef04b8b3315d2592d35c8742ce9163b52215ac87b6349c0012e271a43707d109175b6d336 diff --git a/media-libs/stk/stk-4.4.4-r1.ebuild b/media-libs/stk/stk-4.4.4-r1.ebuild deleted file mode 100644 index 0add9c2b6de9..000000000000 --- a/media-libs/stk/stk-4.4.4-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" -inherit eutils autotools - -DESCRIPTION="Synthesis ToolKit in C++" -HOMEPAGE="http://ccrma.stanford.edu/software/stk/" -SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="alsa debug doc jack oss" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - jack? ( media-sound/jack-audio-connection-kit )" -DEPEND="${RDEPEND} - virtual/pkgconfig - dev-lang/perl" - -src_prepare() { - EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}" - eautoreconf -} - -src_configure() { - #breaks with --disable-foo...uses as --enable-foo - local myconf - if use debug; then - myconf="${myconf} --enable-debug" - fi - if use oss; then - myconf="${myconf} --with-oss" - fi - if use alsa; then - myconf="${myconf} --with-alsa" - fi - if use jack; then - myconf="${myconf} --with-jack" - fi - - econf ${myconf} \ - RAWWAVE_PATH=/usr/share/stk/rawwaves/ -} - -src_install() { - dodoc README || die "Failed to install README" - # install the lib - dolib src/libstk.* || die "Failed to install libstk.*" - # install headers - insinto /usr/include/stk || die "Failed to create header directory." - doins include/*.h include/*.msg include/*.tbl \ - || die "Failed to install msg, tbl and h files." - # install rawwaves - insinto /usr/share/stk/rawwaves || die "Failed to create rawwave directory." - doins rawwaves/*.raw || die "Failed to install rawwave files." - # install docs - if use doc; then - dohtml -r doc/html/* || die "Failed to install docs." - fi -} -- cgit v1.2.3-65-gdbad