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/fil-plugins/
Date: Sun, 01 Nov 2015 10:14:49
Message-Id: 1446225981.02141bb571a70a244401bfd63bf959048f9f4b3f.aballier@gentoo
1 commit: 02141bb571a70a244401bfd63bf959048f9f4b3f
2 Author: Gavin Pryke <gavinlee303 <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 15 18:37:52 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 17:26:21 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02141bb5
7
8 media-plugins/fil-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=0 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 .../fil-plugins/fil-plugins-0.3.0-r1.ebuild | 37 ++++++++++++++++++++++
18 1 file changed, 37 insertions(+)
19
20 diff --git a/media-plugins/fil-plugins/fil-plugins-0.3.0-r1.ebuild b/media-plugins/fil-plugins/fil-plugins-0.3.0-r1.ebuild
21 new file mode 100644
22 index 0000000..14011da
23 --- /dev/null
24 +++ b/media-plugins/fil-plugins/fil-plugins-0.3.0-r1.ebuild
25 @@ -0,0 +1,37 @@
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 eutils multilib toolchain-funcs
32 +
33 +MY_P=${P/fil/FIL}
34 +
35 +DESCRIPTION="FIL-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 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~ppc ~x86"
42 +IUSE=""
43 +
44 +DEPEND="media-libs/ladspa-sdk"
45 +RDEPEND="${DEPEND}"
46 +
47 +S=${WORKDIR}/${MY_P}
48 +
49 +src_prepare() {
50 + epatch "${FILESDIR}/${PN}-makefile.patch"
51 +}
52 +
53 +src_compile() {
54 + emake CXX="$(tc-getCXX)"
55 +}
56 +
57 +src_install() {
58 + dodoc AUTHORS README
59 + insinto /usr/$(get_libdir)/ladspa
60 + insopts -m0755
61 + doins *.so
62 +}