Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/linuxsampler/
Date: Sun, 27 Jan 2019 13:30:54
Message-Id: 1548595833.f14a14fde339dfbea7682e3aaa7868c08182d04f.asturm@gentoo
1 commit: f14a14fde339dfbea7682e3aaa7868c08182d04f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 00:39:33 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 13:30:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14a14fd
7
8 media-sound/linuxsampler: Drop 2.0.0-r2
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/linuxsampler/Manifest | 1 -
14 .../linuxsampler/linuxsampler-2.0.0-r2.ebuild | 57 ----------------------
15 2 files changed, 58 deletions(-)
16
17 diff --git a/media-sound/linuxsampler/Manifest b/media-sound/linuxsampler/Manifest
18 index a686bf85835..ff94957509d 100644
19 --- a/media-sound/linuxsampler/Manifest
20 +++ b/media-sound/linuxsampler/Manifest
21 @@ -1,2 +1 @@
22 -DIST linuxsampler-2.0.0.tar.bz2 1318939 BLAKE2B 75454863e0c56518f2a423ee11567758e1605c450389e6c723d76913319d6bd7ad25c4853d9f1982551c256848fd671f257004f1fc77fb6928b252007830c0f3 SHA512 f4a57117dbec3eeb9d6d670fec76e928ef9d9e49a1a8c6bd654d6114efdc203861e7865005f06265c172e29b5e0a948eac160377dcdabc5244caed5e5ca7e441
23 DIST linuxsampler-2.1.0.tar.bz2 1154834 BLAKE2B 1be8a14bb6c13d90f4068cc2e25211dccc8253a114234ba560136d9da9a806d101db49116698fe53353a649c77513d244700d7bb65be04d0eb4d10ef057898d6 SHA512 503db074437b07e3e8dc8d1cb0aa3a510a62d183148157c1a4757681a4319e531bd6a1486a83c0ab9721dde82e27306150f3be87476c9298b2335438670e19a7
24
25 diff --git a/media-sound/linuxsampler/linuxsampler-2.0.0-r2.ebuild b/media-sound/linuxsampler/linuxsampler-2.0.0-r2.ebuild
26 deleted file mode 100644
27 index 5caedabd561..00000000000
28 --- a/media-sound/linuxsampler/linuxsampler-2.0.0-r2.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools eutils
37 -
38 -DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features"
39 -HOMEPAGE="http://www.linuxsampler.org/"
40 -SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="doc jack lv2 sqlite static-libs"
46 -
47 -RDEPEND="sqlite? ( >=dev-db/sqlite-3.3 )
48 - >=media-libs/libgig-4.0.0
49 - media-libs/alsa-lib
50 - jack? ( virtual/jack )"
51 -DEPEND="${RDEPEND}
52 - virtual/pkgconfig
53 - doc? ( app-doc/doxygen )
54 - lv2? ( media-libs/lv2 )"
55 -PATCHES=(
56 - "${FILESDIR}/${P}-nptl-hardened.patch"
57 - "${FILESDIR}/${P}-lv2-automagic.patch"
58 -)
59 -
60 -src_prepare() {
61 - default
62 - # Force regeneration of the file to let it build with all bison
63 - # versions, bug #556204
64 - rm src/network/lscpparser.cpp || die
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 - econf \
70 - --enable-alsa-driver \
71 - --disable-arts-driver \
72 - $(use_enable jack jack-driver) \
73 - $(use_enable lv2) \
74 - $(use_enable sqlite instruments-db) \
75 - $(use_enable static-libs static)
76 -}
77 -
78 -src_compile() {
79 - default
80 - use doc && emake docs
81 -}
82 -
83 -src_install() {
84 - default
85 - use doc && dodoc -r doc/html
86 - prune_libtool_files
87 -}