Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
Date: Sun, 25 Mar 2018 21:59:19
Message-Id: 1522015149.d1854d52f5f2fec387452eddf821813673f004b6.monsieurp@gentoo
1 commit: d1854d52f5f2fec387452eddf821813673f004b6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Mar 21 19:51:01 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 25 21:59:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1854d52
7
8 media-libs/stk: remove old.
9
10 Closes: https://github.com/gentoo/gentoo/pull/7538
11
12 media-libs/stk/Manifest | 1 -
13 media-libs/stk/stk-4.4.4-r1.ebuild | 62 --------------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
17 index c556aabf9a4..2fb039c80a5 100644
18 --- a/media-libs/stk/Manifest
19 +++ b/media-libs/stk/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST stk-4.4.4.tar.gz 6181713 BLAKE2B ffd0128b8875d4ed54a8fa8d31aa8a7b5602e5b4cde7f3017e4febd1f9c7fcfc63cc4153bccbabb612a6bff2aa3e80efeddad2a77f6e4288ec3722c5ced87634 SHA512 e36c43a20e95eb86ed0335ae17df23c1a672562656738496f9e2e5654a825292c4235e04774fcb0356d47a775b7d7af6b4fd63c9d151ab7f2f9195bb5f728e37
22 DIST stk-4.5.0.tar.gz 2466803 BLAKE2B 30e73179000a581c66a4e80fa00aaea481675b6779b18ec70619e7767884a23f0aa969c172c737cf2b24927d14c3bb91107750ae07b20e868177eb82c2ce3f9b SHA512 a8a19e171093735052d797ef29a6a287dc6753fa726e451865250364dfd22f43b190aa03498ec94b99f3dc137ef951aa85e2f2f3509c74cedada6eedb5a31785
23 DIST stk-4.5.1.tar.gz 2413113 BLAKE2B 5eedf936f26acd3e2f377a198b252ee36bcdbb642f0649c0db6c453beb670a1fc725c94af78ff3e075f50068ae6927b628de0174dba598191ed9f9d2f074c17c SHA512 c4c05edfb49b269d5d2518c06abad8e636c4f67a8598f5a03d406bbef04b8b3315d2592d35c8742ce9163b52215ac87b6349c0012e271a43707d109175b6d336
24
25 diff --git a/media-libs/stk/stk-4.4.4-r1.ebuild b/media-libs/stk/stk-4.4.4-r1.ebuild
26 deleted file mode 100644
27 index 0add9c2b6de..00000000000
28 --- a/media-libs/stk/stk-4.4.4-r1.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2012 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="2"
35 -inherit eutils autotools
36 -
37 -DESCRIPTION="Synthesis ToolKit in C++"
38 -HOMEPAGE="http://ccrma.stanford.edu/software/stk/"
39 -SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="alsa debug doc jack oss"
45 -
46 -RDEPEND="alsa? ( media-libs/alsa-lib )
47 - jack? ( media-sound/jack-audio-connection-kit )"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig
50 - dev-lang/perl"
51 -
52 -src_prepare() {
53 - EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
54 - eautoreconf
55 -}
56 -
57 -src_configure() {
58 - #breaks with --disable-foo...uses as --enable-foo
59 - local myconf
60 - if use debug; then
61 - myconf="${myconf} --enable-debug"
62 - fi
63 - if use oss; then
64 - myconf="${myconf} --with-oss"
65 - fi
66 - if use alsa; then
67 - myconf="${myconf} --with-alsa"
68 - fi
69 - if use jack; then
70 - myconf="${myconf} --with-jack"
71 - fi
72 -
73 - econf ${myconf} \
74 - RAWWAVE_PATH=/usr/share/stk/rawwaves/
75 -}
76 -
77 -src_install() {
78 - dodoc README || die "Failed to install README"
79 - # install the lib
80 - dolib src/libstk.* || die "Failed to install libstk.*"
81 - # install headers
82 - insinto /usr/include/stk || die "Failed to create header directory."
83 - doins include/*.h include/*.msg include/*.tbl \
84 - || die "Failed to install msg, tbl and h files."
85 - # install rawwaves
86 - insinto /usr/share/stk/rawwaves || die "Failed to create rawwave directory."
87 - doins rawwaves/*.raw || die "Failed to install rawwave files."
88 - # install docs
89 - if use doc; then
90 - dohtml -r doc/html/* || die "Failed to install docs."
91 - fi
92 -}