blob: 953d3b3725092d877da9e47577f57097807073b9 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/brutefir-1.0k.ebuild,v 1.1 2009/06/01 20:06:28 ssuominen Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="Software convolution engine for applying long FIR filters"
HOMEPAGE="http://www.ludd.luth.se/~torger/brutefir.html"
SRC_URI="http://www.ludd.luth.se/~torger/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="media-libs/alsa-lib
media-sound/jack-audio-connection-kit
sci-libs/fftw:3.0"
DEPEND="${RDEPEND}"
src_compile() {
emake LD="$(tc-getLD)" CC="$(tc-getCC)" \
AS="$(tc-getAS)" || die "emake failed"
}
src_install() {
dodir /usr/bin
dodir /usr/lib/brutefir
einstall DESTDIR="${D}" INSTALL_PREFIX="${D}"/usr \
|| die "einstall failed"
if [ "$(get_libdir)" != "lib" ]; then
mv "${D}"/usr/lib "${D}"/usr/$(get_libdir)
fi
dodoc CHANGES README
insinto usr/share/brutefir
doins xtc_config directpath.txt crosspath.txt massive_config \
bench1_config bench2_config bench3_config bench4_config bench5_config
}
pkg_postinst() {
elog "Brutefir is a complicated piece of software. Please"
elog "read the documentation first! You can find"
elog "documentation here: http://www.ludd.luth.se/~torger/brutefir.html"
elog "Example config files are in /usr/share/brutefir"
}
|