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-r1.ebuild
Date: Sun, 21 Jun 2009 02:51:30
Message-Id: E1MID9T-0001u5-QM@stork.gentoo.org
1 ssuominen 09/06/21 02:51:27
2
3 Modified: ChangeLog
4 Added: brutefir-1.0k-r1.ebuild
5 Log:
6 Use gcc instead of ld as a linker wrt #252338, because -fPIC directly to ld isn't valid.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 media-sound/brutefir/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 1 Jun 2009 20:06:28 -0000 1.15
23 +++ ChangeLog 21 Jun 2009 02:51:27 -0000 1.16
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-sound/brutefir
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v 1.15 2009/06/01 20:06:28 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/ChangeLog,v 1.16 2009/06/21 02:51:27 ssuominen Exp $
29 +
30 +*brutefir-1.0k-r1 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Samuli Suominen <ssuominen@g.o>
33 + +brutefir-1.0k-r1.ebuild, +files/brutefir-1.0k-ld.patch:
34 + Use gcc instead of ld as a linker wrt #252338, because -fPIC directly to
35 + ld isn't valid.
36
37 *brutefir-1.0k (01 Jun 2009)
38
39
40
41
42 1.1 media-sound/brutefir/brutefir-1.0k-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/brutefir-1.0k-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/brutefir/brutefir-1.0k-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: brutefir-1.0k-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/brutefir/brutefir-1.0k-r1.ebuild,v 1.1 2009/06/21 02:51:27 ssuominen Exp $
52
53 EAPI=2
54 inherit eutils multilib toolchain-funcs
55
56 DESCRIPTION="Software convolution engine for applying long FIR filters"
57 HOMEPAGE="http://www.ludd.luth.se/~torger/brutefir.html"
58 SRC_URI="http://www.ludd.luth.se/~torger/files/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 RDEPEND="media-libs/alsa-lib
66 media-sound/jack-audio-connection-kit
67 sci-libs/fftw:3.0"
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-ld.patch
72 }
73
74 src_compile() {
75 tc-export AS CC
76 emake || die "emake failed"
77 }
78
79 src_install() {
80 emake LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" \
81 install || die "emake install failed"
82 dodoc CHANGES README
83
84 insinto /usr/share/${PN}
85 doins xtc_config directpath.txt crosspath.txt massive_config \
86 bench1_config bench2_config bench3_config bench4_config \
87 bench5_config || die "doins failed"
88 }
89
90 pkg_postinst() {
91 elog "Brutefir is a complicated piece of software. Please"
92 elog "read the documentation first! You can find"
93 elog "documentation here: http://www.ludd.luth.se/~torger/brutefir.html"
94 elog "Example config files are in /usr/share/brutefir"
95 }