blob: 51d8d7a2cb777610657ad4262ee73be72992909f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdsp/libdsp-4.9.2-r1.ebuild,v 1.4 2005/07/13 14:25:11 swegener Exp $
inherit eutils
DESCRIPTION="C++ class library of common digital signal processing functions."
HOMEPAGE="http://libdsp.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.tar.gz
doc? ( mirror://sourceforge/${PN}/${PN}-doc-html.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
# -amd64, -sparc: 4.9.2-r1 - uses x86 assembly
KEYWORDS="x86 -amd64 -sparc"
IUSE="doc"
DEPEND=""
S=${WORKDIR}/${PN}-src-${PV}
src_compile() {
# fixes some Makefile weirdness
epatch ${FILESDIR}/Makefile.patch
# use our CFLAGS/CXXFLAGS instead
sed -e "s:^CFLAGS.*:CFLAGS = ${CFLAGS}:" -i libDSP/Makefile
sed -e "s:^CXXFLAGS.*:CXXFLAGS = ${CXXFLAGS}:" -i DynThreads/Makefile
# use our PREFIX too
sed -e "s:^PREFIX.*:PREFIX = ${D}/usr:" -i Inlines/Makefile
sed -e "s:^PREFIX.*:PREFIX = ${D}/usr:" -i libDSP/Makefile
sed -e "s:^PREFIX.*:PREFIX = ${D}/usr:" -i DynThreads/Makefile
# libtool only supports the --tag option from v1.5 onwards
if ! has_version ">=sys-devel/libtool-1.5.0"; then
sed -e "s/^LIBTOOL = libtool --tag=CXX/LIBTOOL = libtool/" -i libDSP/Makefile
fi
cd ${S}/DynThreads
emake || die "DynThreads make failed!"
cd ${S}/libDSP
emake || die "libDSP make failed!"
}
src_install() {
mkdir -p ${D}/usr/include
cd ${S}/Inlines
make install || die "Inlines install failed!"
cd ${S}/DynThreads
make install || die "DynThreads install failed!"
cd ${S}/libDSP
make install || die "libDSP install failed!"
if use doc; then
dohtml ${WORKDIR}/${PN}-doc-html/*
docinto samples
dodoc ${S}/libDSP/work/*
fi
}
|