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/mcp-plugins/
Date: Sun, 01 Nov 2015 10:14:51
Message-Id: 1446226065.6bdad727b9ad9d4fd441c27796f0e8a1559793df.aballier@gentoo
1 commit: 6bdad727b9ad9d4fd441c27796f0e8a1559793df
2 Author: Gavin Pryke <gavinlee303 <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 15 19:01:45 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 17:27:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bdad727
7
8 media-plugins/mcp-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=4 which has been marked
13 deprecated so bumped to EAPI=5, revbumped and modified ebuild
14 accordingly.
15
16 Bug: https://bugs.gentoo.org/show_bug.cgi?id=437186
17
18 .../mcp-plugins/mcp-plugins-0.4.0-r1.ebuild | 35 ++++++++++++++++++++++
19 1 file changed, 35 insertions(+)
20
21 diff --git a/media-plugins/mcp-plugins/mcp-plugins-0.4.0-r1.ebuild b/media-plugins/mcp-plugins/mcp-plugins-0.4.0-r1.ebuild
22 new file mode 100644
23 index 0000000..344f21d
24 --- /dev/null
25 +++ b/media-plugins/mcp-plugins/mcp-plugins-0.4.0-r1.ebuild
26 @@ -0,0 +1,35 @@
27 +# Copyright 1999-2015 Gentoo Foundation
28 +# Distributed under the terms of the GNU General Public License v2
29 +# $Id$
30 +
31 +EAPI=5
32 +inherit multilib toolchain-funcs
33 +
34 +MY_P=${P/mcp/MCP}
35 +
36 +DESCRIPTION="MCP ladspa plugins package. Includes moogvcf, phaser & chorus"
37 +HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
38 +SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${MY_P}.tar.bz2"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~ppc ~x86"
43 +IUSE=""
44 +
45 +DEPEND="media-libs/ladspa-sdk"
46 +RDEPEND="${DEPEND}"
47 +
48 +S=${WORKDIR}/${MY_P}
49 +
50 +src_prepare() {
51 + tc-export CXX
52 + sed -i -e "s/-O3//" \
53 + -e "s/g++/$(tc-getCXX) ${LDFLAGS}/" Makefile || die "sed failed"
54 +}
55 +
56 +src_install() {
57 + dodoc AUTHORS README
58 + insinto /usr/$(get_libdir)/ladspa
59 + insopts -m0755
60 + doins *.so
61 +}