mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 00:18:26 +00:00
30 lines
630 B
Bash
30 lines
630 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Stereo reverb LADSPA plugin"
|
|
HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"
|
|
SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="media-libs/ladspa-sdk"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
default
|
|
tc-export CXX
|
|
sed -i Makefile -e 's/-O2//' -e 's/g++/$(CXX) $(LDFLAGS)/' || die
|
|
}
|
|
|
|
src_install() {
|
|
dodoc AUTHORS README
|
|
insinto /usr/$(get_libdir)/ladspa
|
|
insopts -m0755
|
|
doins *.so
|
|
}
|