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-libs/rubberband: ChangeLog rubberband-1.3.ebuild
Date: Fri, 05 Jun 2009 22:04:55
Message-Id: E1MChWv-0004Ox-Qm@stork.gentoo.org
1 ssuominen 09/06/05 22:04:53
2
3 Modified: ChangeLog rubberband-1.3.ebuild
4 Log:
5 Fix compile with GCC 4.4
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 media-libs/rubberband/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/ChangeLog?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/ChangeLog?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/ChangeLog?r1=1.7&r2=1.8
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- ChangeLog 16 Mar 2009 21:01:44 -0000 1.7
22 +++ ChangeLog 5 Jun 2009 22:04:53 -0000 1.8
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/rubberband
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v 1.7 2009/03/16 21:01:44 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v 1.8 2009/06/05 22:04:53 ssuominen Exp $
28 +
29 + 05 Jun 2009; Samuli Suominen <ssuominen@g.o> rubberband-1.3.ebuild,
30 + +files/rubberband-1.3-gcc44.patch:
31 + Fix compile with GCC 4.4
32
33 *rubberband-1.3 (16 Mar 2009)
34
35
36
37
38 1.2 media-libs/rubberband/rubberband-1.3.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild?r1=1.1&r2=1.2
43
44 Index: rubberband-1.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- rubberband-1.3.ebuild 16 Mar 2009 21:01:44 -0000 1.1
51 +++ rubberband-1.3.ebuild 5 Jun 2009 22:04:53 -0000 1.2
52 @@ -1,7 +1,8 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild,v 1.1 2009/03/16 21:01:44 aballier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.3.ebuild,v 1.2 2009/06/05 22:04:53 ssuominen Exp $
57
58 +EAPI=2
59 inherit eutils multilib
60
61 DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program"
62 @@ -21,6 +22,10 @@
63 DEPEND="${RDEPEND}
64 dev-util/pkgconfig"
65
66 +src_prepare() {
67 + epatch "${FILESDIR}"/${P}-gcc44.patch
68 +}
69 +
70 src_install() {
71 emake INSTALL_BINDIR="${D}/usr/bin" \
72 INSTALL_INCDIR="${D}/usr/include/rubberband" \
73 @@ -29,6 +34,6 @@
74 INSTALL_LADSPADIR="${D}/usr/$(get_libdir)/ladspa" \
75 INSTALL_LRDFDIR="${D}/usr/share/ladspa/rdf" \
76 INSTALL_PKGDIR="${D}/usr/$(get_libdir)/pkgconfig" \
77 - install || die "make install failed"
78 + install || die "emake install failed"
79 dodoc README
80 }