Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vamp-libxtract-plugins/
Date: Sat, 02 Jun 2018 22:38:32
Message-Id: 1527979036.d81f02c0de91b8650b227052e8b3b3436fa3f29a.bman@gentoo
1 commit: d81f02c0de91b8650b227052e8b3b3436fa3f29a
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 17:17:39 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 22:37:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d81f02c0
7
8 media-plugins/vamp-libxtract-plugins: bump EAPI and drop eutils
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 .../vamp-libxtract-plugins-0.6.6.20121204.ebuild | 17 +++++++++--------
13 1 file changed, 9 insertions(+), 8 deletions(-)
14
15 diff --git a/media-plugins/vamp-libxtract-plugins/vamp-libxtract-plugins-0.6.6.20121204.ebuild b/media-plugins/vamp-libxtract-plugins/vamp-libxtract-plugins-0.6.6.20121204.ebuild
16 index c6fb88e8947..08a717bc9b5 100644
17 --- a/media-plugins/vamp-libxtract-plugins/vamp-libxtract-plugins-0.6.6.20121204.ebuild
18 +++ b/media-plugins/vamp-libxtract-plugins/vamp-libxtract-plugins-0.6.6.20121204.ebuild
19 @@ -1,8 +1,9 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=2
25 -inherit eutils multilib toolchain-funcs
26 +EAPI=6
27 +
28 +inherit multilib toolchain-funcs
29
30 DESCRIPTION="Vamp plugin encapsulating many of the functions of the LibXtract library"
31 HOMEPAGE="http://www.vamp-plugins.org/"
32 @@ -19,16 +20,16 @@ RDEPEND="=sci-libs/fftw-3*
33 DEPEND="${RDEPEND}"
34
35 src_prepare() {
36 - sed -e "s/-O3//" -e "s/ -Wl,-Bstatic//" -i Makefile
37 + default
38 + sed -e "s/-O3//" -e "s/ -Wl,-Bstatic//" -i Makefile || die "sed Makefile failed"
39 }
40
41 -src_compile() {
42 +src_configure() {
43 tc-export CXX
44 - emake || die "emake failed"
45 }
46
47 src_install() {
48 insinto /usr/$(get_libdir)/vamp
49 - doins vamp-libxtract.{so,cat} || die "doins failed"
50 - dodoc README STATUS
51 + doins vamp-libxtract.{so,cat}
52 + einstalldocs
53 }