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-libs/bio2jack/
Date: Tue, 05 Feb 2019 14:14:25
Message-Id: 1549375943.59afb542af68238074b3a9c83f4c4bdcfa550ede.asturm@gentoo
1 commit: 59afb542af68238074b3a9c83f4c4bdcfa550ede
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 5 08:27:16 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 5 14:12:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59afb542
7
8 media-libs/bio2jack: remove old (EAPI4)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/10982
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-libs/bio2jack/bio2jack-0.9-r1.ebuild | 43 ------------------------------
15 1 file changed, 43 deletions(-)
16
17 diff --git a/media-libs/bio2jack/bio2jack-0.9-r1.ebuild b/media-libs/bio2jack/bio2jack-0.9-r1.ebuild
18 deleted file mode 100644
19 index ff0451c2aa4..00000000000
20 --- a/media-libs/bio2jack/bio2jack-0.9-r1.ebuild
21 +++ /dev/null
22 @@ -1,43 +0,0 @@
23 -# Copyright 1999-2012 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=4
27 -inherit autotools
28 -
29 -DESCRIPTION="A library for porting blocked I/O OSS/ALSA audio applications to JACK"
30 -HOMEPAGE="http://bio2jack.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/bio2jack/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
36 -IUSE="static-libs"
37 -
38 -RDEPEND="media-libs/libsamplerate
39 - media-sound/jack-audio-connection-kit"
40 -DEPEND="${RDEPEND}
41 - virtual/pkgconfig"
42 -
43 -S=${WORKDIR}/${PN}
44 -
45 -src_prepare() {
46 - # upstream does not provide a real release, it releases a tarball
47 - # with a _prebuilt_ copy of bio2jack. Drop all of the built stuff
48 - # and recreate autotools from scratch, then build.
49 - rm -rf *.a *.o *.la *.lo .libs .deps Makefile config.{log,status} stamp-h1 stamp || die
50 -
51 - eautoreconf
52 -}
53 -
54 -src_configure() {
55 - econf \
56 - --enable-shared \
57 - $(use_enable static-libs static)
58 -}
59 -
60 -src_install() {
61 - emake DESTDIR="${D}" install
62 - dobin bio2jack-config
63 - dodoc AUTHORS ChangeLog NEWS README
64 - rm -f "${ED}"usr/lib*/lib*.la
65 -}