# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild,v 1.5 2004/01/14 21:31:16 rphillips Exp $ S=${WORKDIR}/cmt/src P=cmt_src_${PV} DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins" HOMEPAGE="http://www.ladspa.org/" LICENSE="LGPL-2.1" DEPEND="media-libs/ladspa-sdk" SRC_URI="http://www.ladspa.org/download/${P}.tgz" KEYWORDS="x86" SLOT="0" src_unpack() { unpack "${P}.tgz" cd "${S}" sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" \ -e 's|/usr/local/include||g' \ -e 's|/usr/local/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 }