Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/brutefir: ChangeLog brutefir-1.0k.ebuild
Date: Mon, 01 Jun 2009 20:06:30
Message-Id: E1MBDm8-0005Jf-MA@stork.gentoo.org
1 ssuominen 09/06/01 20:06:28
2
3 Modified: ChangeLog
4 Added: brutefir-1.0k.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 media-sound/brutefir/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 25 Aug 2007 18:27:27 -0000 1.14
23 +++ ChangeLog 1 Jun 2009 20:06:28 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/brutefir
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v 1.14 2007/08/25 18:27:27 beandog Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v 1.15 2009/06/01 20:06:28 ssuominen Exp $
30 +
31 +*brutefir-1.0k (01 Jun 2009)
32 +
33 + 01 Jun 2009; Samuli Suominen <ssuominen@g.o> +brutefir-1.0k.ebuild:
34 + Version bump.
35
36 25 Aug 2007; Steve Dibb <beandog@g.o> brutefir-1.0i.ebuild:
37 amd64 stable
38
39
40
41 1.1 media-sound/brutefir/brutefir-1.0k.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/brutefir-1.0k.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/brutefir-1.0k.ebuild?rev=1.1&content-type=text/plain
45
46 Index: brutefir-1.0k.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/brutefir-1.0k.ebuild,v 1.1 2009/06/01 20:06:28 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="Software convolution engine for applying long FIR filters"
56 HOMEPAGE="http://www.ludd.luth.se/~torger/brutefir.html"
57 SRC_URI="http://www.ludd.luth.se/~torger/files/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 RDEPEND="media-libs/alsa-lib
65 media-sound/jack-audio-connection-kit
66 sci-libs/fftw:3.0"
67 DEPEND="${RDEPEND}"
68
69 src_compile() {
70 emake LD="$(tc-getLD)" CC="$(tc-getCC)" \
71 AS="$(tc-getAS)" || die "emake failed"
72 }
73
74 src_install() {
75 dodir /usr/bin
76 dodir /usr/lib/brutefir
77
78 einstall DESTDIR="${D}" INSTALL_PREFIX="${D}"/usr \
79 || die "einstall failed"
80
81 if [ "$(get_libdir)" != "lib" ]; then
82 mv "${D}"/usr/lib "${D}"/usr/$(get_libdir)
83 fi
84
85 dodoc CHANGES README
86
87 insinto usr/share/brutefir
88 doins xtc_config directpath.txt crosspath.txt massive_config \
89 bench1_config bench2_config bench3_config bench4_config bench5_config
90 }
91
92 pkg_postinst() {
93 elog "Brutefir is a complicated piece of software. Please"
94 elog "read the documentation first! You can find"
95 elog "documentation here: http://www.ludd.luth.se/~torger/brutefir.html"
96 elog "Example config files are in /usr/share/brutefir"
97 }