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