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/vco-plugins/
Date: Sun, 01 Nov 2015 10:14:50
Message-Id: 1446226010.24e3525174c08c49b91efc97467c9724ba0ab8e7.aballier@gentoo
1 commit: 24e3525174c08c49b91efc97467c9724ba0ab8e7
2 Author: Gavin Pryke <gavinlee303 <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 15 18:47:49 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 17:26:50 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24e35251
7
8 media-plugins/vco-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 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 .../vco-plugins/vco-plugins-0.3.0-r1.ebuild | 35 ++++++++++++++++++++++
18 1 file changed, 35 insertions(+)
19
20 diff --git a/media-plugins/vco-plugins/vco-plugins-0.3.0-r1.ebuild b/media-plugins/vco-plugins/vco-plugins-0.3.0-r1.ebuild
21 new file mode 100644
22 index 0000000..9061029
23 --- /dev/null
24 +++ b/media-plugins/vco-plugins/vco-plugins-0.3.0-r1.ebuild
25 @@ -0,0 +1,35 @@
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/vco/VCO}
34 +
35 +DESCRIPTION="SAW-VCO ladspa plugin package. Anti-aliased oscillators"
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 + tc-export CXX
51 + sed -i -e "s/-O3//" \
52 + -e "s/g++/$(tc-getCXX) ${LDFLAGS}/" Makefile || die
53 +}
54 +
55 +src_install() {
56 + dodoc AUTHORS README
57 + insinto /usr/$(get_libdir)/ladspa
58 + insopts -m0755
59 + doins *.so
60 +}