52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# 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.27 2008/08/17 08:19:51 aballier Exp $
|
|
|
|
inherit eutils
|
|
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/cmt/src"
|
|
MY_P="cmt_src_${PV}"
|
|
|
|
DESCRIPTION="CMT (computer music toolkit) Lasdpa library plugins"
|
|
HOMEPAGE="http://www.ladspa.org/"
|
|
SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz"
|
|
|
|
KEYWORDS="~alpha amd64 ppc ppc64 sparc x86"
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
|
|
DEPEND="media-libs/ladspa-sdk
|
|
>=sys-apps/sed-4"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
sed -i \
|
|
-e "/^CFLAGS/ s/-O3/${CFLAGS}/" \
|
|
-e 's|/usr/local/include||g' \
|
|
-e 's|/usr/local/lib||g' makefile \
|
|
|| die "sed makefile failed"
|
|
|
|
cd "${S}"
|
|
use userland_Darwin && epatch "${FILESDIR}/${PN}-darwin.patch"
|
|
# gcc-4 bails
|
|
sed -i -e 's|-Werror||g' makefile \
|
|
|| die "sed makefile failed"
|
|
}
|
|
|
|
src_compile() {
|
|
# It sets CXXFLAGS to CFLAGS, can be wrong..
|
|
# Just set CXXFLAGS to what they should be
|
|
emake CXXFLAGS="$CXXFLAGS -I. -fPIC" || die
|
|
}
|
|
|
|
src_install() {
|
|
insopts -m755
|
|
insinto /usr/$(get_libdir)/ladspa
|
|
doins ../plugins/*.so || die "doins failed"
|
|
dodoc ../README || die "dodoc failed"
|
|
dohtml ../doc/* || die "dohtml failed"
|
|
}
|