Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsamplerate: ChangeLog libsamplerate-0.1.7.ebuild
Date: Fri, 20 Feb 2009 08:59:55
Message-Id: E1LaREg-00058O-3B@stork.gentoo.org
1 aballier 09/02/20 08:59:54
2
3 Modified: ChangeLog
4 Added: libsamplerate-0.1.7.ebuild
5 Log:
6 Version bump by Richard Ash <richard@××××××××××××.org>, bug #259274, plus a patch from Erik to fix tests on 64 bits platforms.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.60 media-libs/libsamplerate/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 8 Feb 2009 09:41:03 -0000 1.59
23 +++ ChangeLog 20 Feb 2009 08:59:54 -0000 1.60
24 @@ -1,6 +1,14 @@
25 # ChangeLog for media-libs/libsamplerate
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.59 2009/02/08 09:41:03 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.60 2009/02/20 08:59:54 aballier Exp $
29 +
30 +*libsamplerate-0.1.7 (20 Feb 2009)
31 +
32 + 20 Feb 2009; Alexis Ballier <aballier@g.o>
33 + +files/libsamplerate-0.1.7-macro-quoting.patch,
34 + +files/libsamplerate-0.1.7-tests.patch, +libsamplerate-0.1.7.ebuild:
35 + Version bump by Richard Ash <richard@××××××××××××.org>, bug #259274, plus
36 + a patch from Erik to fix tests on 64 bits platforms.
37
38 *libsamplerate-0.1.6 (08 Feb 2009)
39
40
41
42
43 1.1 media-libs/libsamplerate/libsamplerate-0.1.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libsamplerate-0.1.7.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild,v 1.1 2009/02/20 08:59:54 aballier Exp $
53
54 inherit eutils autotools
55
56 DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio"
57 HOMEPAGE="http://www.mega-nerd.com/SRC/"
58 SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="sndfile"
64
65 RDEPEND="sndfile? ( >=media-libs/libsndfile-1.0.2 )"
66 DEPEND="${RDEPEND}
67 >=dev-util/pkgconfig-0.14"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}"/${PN}-0.1.3-dontbuild-tests-examples.patch
73 epatch "${FILESDIR}"/${P}-macro-quoting.patch
74 epatch "${FILESDIR}"/${P}-tests.patch
75 eautoreconf
76 }
77
78 src_compile() {
79 econf \
80 --disable-fftw \
81 $(use_enable sndfile) \
82 --disable-dependency-tracking
83 emake || die
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "make install failed"
88 dodoc AUTHORS ChangeLog NEWS README
89 dohtml doc/*.html doc/*.css doc/*.png
90 }