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/amb-plugins/
Date: Sun, 01 Nov 2015 10:14:54
Message-Id: 1444933685.2f71f65ced385fbe412f71947e0f988f5e3a6e0c.aballier@gentoo
1 commit: 2f71f65ced385fbe412f71947e0f988f5e3a6e0c
2 Author: Gavin Pryke <gavinlee303 <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 15 18:28:05 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 15 18:28:05 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f71f65c
7
8 media-plugins/amb-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=3 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 .../amb-plugins/amb-plugins-0.8.1-r1.ebuild | 36 ++++++++++++++++++++++
18 1 file changed, 36 insertions(+)
19
20 diff --git a/media-plugins/amb-plugins/amb-plugins-0.8.1-r1.ebuild b/media-plugins/amb-plugins/amb-plugins-0.8.1-r1.ebuild
21 new file mode 100644
22 index 0000000..94fb168
23 --- /dev/null
24 +++ b/media-plugins/amb-plugins/amb-plugins-0.8.1-r1.ebuild
25 @@ -0,0 +1,36 @@
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 eutils
32 +
33 +MY_P=${P/amb/AMB}
34 +
35 +DESCRIPTION="AMB-plugins ladspa plugin package. Filters by Fons Adriaensen"
36 +HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
37 +SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${MY_P}.tar.bz2"
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE=""
42 +
43 +DEPEND="media-libs/ladspa-sdk"
44 +RDEPEND="${DEPEND}"
45 +
46 +S=${WORKDIR}/${MY_P}
47 +
48 +src_prepare() {
49 + epatch "${FILESDIR}/${P}-Makefile.patch"
50 +}
51 +
52 +src_compile() {
53 + emake CXX="$(tc-getCXX)"
54 +}
55 +
56 +src_install() {
57 + dodoc AUTHORS README
58 + insinto /usr/$(get_libdir)/ladspa
59 + insopts -m0755
60 + doins *.so
61 +}