tina@violetina ~ $ cat /usr/local/portage/media-plugins/invada-studio-plugins/invada-studio-plugins-0.3.1-r1.ebuild
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
#Thanks to ssuominen for his assistance with the creation of this ebuild
EAPI=2
inherit eutils toolchain-funcs multilib
DESCRIPTION="Invada ladspa package, contains: Compressor, Filters, Reverb, Input Processor, Tube Simulator"
LICENSE="GPL-2"
SLOT=0
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND=">=media-libs/ladspa-sdk-1.13"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/0.3.1-ladspa.patch
# multilib-strict workaround
sed -i -e "s|/lib/|/$(get_libdir)/|" Makefile || die
}
src_compile() {
tc-export AR CC
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc CREDITS README
}