Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/stk/
Date: Thu, 03 Feb 2022 14:23:42
Message-Id: 1643898206.2067ac1c7323bfb18811aa9775b6586b406fc892.fordfrog@gentoo
1 commit: 2067ac1c7323bfb18811aa9775b6586b406fc892
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 14:23:26 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 14:23:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2067ac1c
7
8 media-libs/stk: removed obsolete 4.6.1
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/stk/Manifest | 1 -
14 media-libs/stk/stk-4.6.1.ebuild | 79 -----------------------------------------
15 2 files changed, 80 deletions(-)
16
17 diff --git a/media-libs/stk/Manifest b/media-libs/stk/Manifest
18 index c0b3d102f89a..0ed41fb95651 100644
19 --- a/media-libs/stk/Manifest
20 +++ b/media-libs/stk/Manifest
21 @@ -1,2 +1 @@
22 -DIST stk-4.6.1.tar.gz 2593348 BLAKE2B 2cb269b8fb5732d55a394d5b8842c380b6a3e82e7338e972c6d22baf5ba1edee3f03ed699b9950d4a92a7ae3102bbb54f844ffd728c6478ebfb36328a1b89f2a SHA512 2a22078cdb630f7c014a5ab38070fd6a6d1e9aa719401e3190a040cb06b61003cd3095fe1a8890eff59e4fc42594fe893b4c0a8327175e1701c75de7537e1830
23 DIST stk-4.6.2.tar.gz 2618125 BLAKE2B 8673cabbc57c5b520af62def967bf3923a91c7b619bd29faaebaa4e3fa6aabcd9dc43e605663d8062650b105ae60ebefc44a3fa420ef711119861ce03e77f130 SHA512 35a7f559cca5c9b5998528a566ae27bace3cac56cefda7ae54c06179f5002d2906c6ede6274bf06100dd6aa9dc0d1459bb8fca4a2072c686c2abfd493b6f2f3c
24
25 diff --git a/media-libs/stk/stk-4.6.1.ebuild b/media-libs/stk/stk-4.6.1.ebuild
26 deleted file mode 100644
27 index 7f4e3b6ed7c8..000000000000
28 --- a/media-libs/stk/stk-4.6.1.ebuild
29 +++ /dev/null
30 @@ -1,79 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Synthesis ToolKit in C++"
39 -HOMEPAGE="https://ccrma.stanford.edu/software/stk/"
40 -SRC_URI="https://ccrma.stanford.edu/software/stk/release/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="alsa debug doc jack oss static-libs"
46 -
47 -BDEPEND="
48 - virtual/pkgconfig
49 -"
50 -RDEPEND="alsa? ( media-libs/alsa-lib )
51 - jack? ( virtual/jack )"
52 -DEPEND="${RDEPEND}
53 - dev-lang/perl"
54 -
55 -PATCHES=(
56 - "${FILESDIR}/${PN}-4.5.1"
57 -)
58 -
59 -HTML_DOCS=(
60 - doc/html/.
61 -)
62 -
63 -src_prepare() {
64 - default
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 - #breaks with --disable-foo...uses as --enable-foo
70 - local myconf
71 - if use debug; then
72 - myconf="${myconf} --enable-debug"
73 - fi
74 - if use oss; then
75 - myconf="${myconf} --with-oss"
76 - fi
77 - if use alsa; then
78 - myconf="${myconf} --with-alsa"
79 - fi
80 - if use jack; then
81 - myconf="${myconf} --with-jack"
82 - fi
83 -
84 - econf ${myconf} \
85 - --enable-shared \
86 - $(use_enable static-libs static) \
87 - RAWWAVE_PATH=/usr/share/stk/rawwaves/
88 -}
89 -
90 -src_install() {
91 - dodoc README.md
92 -
93 - # install the lib
94 - dolib.so src/libstk*
95 - use static-libs && dolib.a src/libstk*
96 -
97 - # install headers
98 - insinto /usr/include/stk
99 - doins include/*.h
100 -
101 - # install rawwaves
102 - insinto /usr/share/stk/rawwaves
103 - doins rawwaves/*.raw
104 -
105 - # install docs
106 - if use doc; then
107 - einstalldocs
108 - fi
109 -}