# Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins" HOMEPAGE="http://www.ladspa.org/" LICENSE="LGPL-2.1" DEPEND="media-libs/ladspa-sdk" RDEPEND="${DEPEND}" SRC_URI="http://www.ladspa.org/download/cmt_src.tgz" SLOT="0" S=${WORKDIR}/cmt/src P=cmt_src A=${P}.tgz src_unpack() { unpack "${A}" cd "${S}" sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ -e 's|/usr/local/include|/usr/include|g' \ -e 's|/usr/local/lib|/usr/lib|g' \ makefile > makefile.new mv makefile.new makefile } src_compile() { emake || die } src_install() { dodoc ../doc/* insinto /usr/lib/ladspa INSOPTIONS="-m755" doins ../plugins/*.so }