mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-plugins/vco-plugins: fix HOMEPAGE, SRC_URI, EAPI=5. bug #437186
The HOMEPAGE and SRC_URI for kokkinizita upstream was changed some time ago. These changes point said variables to the new location. The previous ebuild was EAPI=4 which is deprecated so bumped to EAPI=5, revbumped and modified ebuild accordingly. Bug: https://bugs.gentoo.org/show_bug.cgi?id=437186
This commit is contained in:
35
media-plugins/vco-plugins/vco-plugins-0.3.0-r1.ebuild
Normal file
35
media-plugins/vco-plugins/vco-plugins-0.3.0-r1.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit multilib toolchain-funcs
|
||||
|
||||
MY_P=${P/vco/VCO}
|
||||
|
||||
DESCRIPTION="SAW-VCO ladspa plugin package. Anti-aliased oscillators"
|
||||
HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
|
||||
SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="media-libs/ladspa-sdk"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
src_prepare() {
|
||||
tc-export CXX
|
||||
sed -i -e "s/-O3//" \
|
||||
-e "s/g++/$(tc-getCXX) ${LDFLAGS}/" Makefile || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc AUTHORS README
|
||||
insinto /usr/$(get_libdir)/ladspa
|
||||
insopts -m0755
|
||||
doins *.so
|
||||
}
|
||||
Reference in New Issue
Block a user