Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/rev-plugins/
Date: Sun, 01 Nov 2015 10:14:48
Message-Id: 1446226031.09b19e4e1c4fe35ae5570dc304cd828b022c944f.aballier@gentoo
1 commit: 09b19e4e1c4fe35ae5570dc304cd828b022c944f
2 Author: Gavin Pryke <gavinlee303 <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 15 18:56:54 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 17:27:11 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09b19e4e
7
8 media-plugins/rev-plugins: fix HOMEPAGE, SRC_URI, EAPI=5. bug #437186
9
10 The HOMEPAGE and SRC_URI for kokkinizita upstream was changed
11 some time ago. These changes point said variables to the new
12 location. The previous ebuild was EAPI=2 which is deprecated so
13 bumped to EAPI=5, revbumped and modified ebuild accordingly.
14
15 Bug: https://bugs.gentoo.org/show_bug.cgi?id=437186
16
17 .../rev-plugins/rev-plugins-0.3.1-r2.ebuild | 34 ++++++++++++++++++++++
18 1 file changed, 34 insertions(+)
19
20 diff --git a/media-plugins/rev-plugins/rev-plugins-0.3.1-r2.ebuild b/media-plugins/rev-plugins/rev-plugins-0.3.1-r2.ebuild
21 new file mode 100644
22 index 0000000..efe47c8
23 --- /dev/null
24 +++ b/media-plugins/rev-plugins/rev-plugins-0.3.1-r2.ebuild
25 @@ -0,0 +1,34 @@
26 +# Copyright 1999-2015 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +# $Id$
29 +
30 +EAPI=5
31 +inherit multilib toolchain-funcs
32 +
33 +MY_P=${P/rev/REV}
34 +
35 +DESCRIPTION="REV LADSPA plugins package. A stereo reverb plugin based on the well-known greverb"
36 +HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
37 +SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${MY_P}.tar.bz2"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE=""
43 +
44 +DEPEND="media-libs/ladspa-sdk"
45 +RDEPEND="${DEPEND}"
46 +
47 +S=${WORKDIR}/${MY_P}
48 +
49 +src_prepare() {
50 + tc-export CXX
51 + sed -i Makefile -e 's/-O2//' -e 's/g++/$(CXX) $(LDFLAGS)/' || die
52 +}
53 +
54 +src_install() {
55 + dodoc AUTHORS README
56 + insinto /usr/$(get_libdir)/ladspa
57 + insopts -m0755
58 + doins *.so
59 +}