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/cdparanoia: cdparanoia-3.10.2-r2.ebuild ChangeLog
Date: Fri, 28 Nov 2008 18:27:48
Message-Id: E1L684A-0002mP-Hs@stork.gentoo.org
1 ssuominen 08/11/28 18:27:46
2
3 Modified: ChangeLog
4 Added: cdparanoia-3.10.2-r2.ebuild
5 Log:
6 Fix a really stupid oversight that should have been tested: forcing a drive/host endian mismatch within the interface lib. Doesn't check for null buff before trying a byteswap. Should fix Gentoo bug 240960, thanks to Marty Rosenberg for his incomplete bug report.
7 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27.7 i686)
8
9 Revision Changes Path
10 1.90 media-sound/cdparanoia/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/cdparanoia/ChangeLog?rev=1.90&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/cdparanoia/ChangeLog?rev=1.90&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/cdparanoia/ChangeLog?r1=1.89&r2=1.90
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/ChangeLog,v
19 retrieving revision 1.89
20 retrieving revision 1.90
21 diff -u -r1.89 -r1.90
22 --- ChangeLog 19 Oct 2008 16:16:49 -0000 1.89
23 +++ ChangeLog 28 Nov 2008 18:27:46 -0000 1.90
24 @@ -1,6 +1,15 @@
25 # ChangeLog for media-sound/cdparanoia
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/ChangeLog,v 1.89 2008/10/19 16:16:49 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/ChangeLog,v 1.90 2008/11/28 18:27:46 ssuominen Exp $
29 +
30 +*cdparanoia-3.10.2-r2 (28 Nov 2008)
31 +
32 + 28 Nov 2008; <ssuominen@g.o> +files/cdparanoia-3.10.2-ppc64.patch,
33 + +cdparanoia-3.10.2-r2.ebuild:
34 + Fix a really stupid oversight that should have been tested: forcing a
35 + drive/host endian mismatch within the interface lib. Doesn't check for
36 + null buff before trying a byteswap. Should fix Gentoo bug 240960, thanks
37 + to Marty Rosenberg for his incomplete bug report.
38
39 19 Oct 2008; Alexis Ballier <aballier@g.o>
40 cdparanoia-3.10.2-r1.ebuild:
41
42
43
44 1.1 media-sound/cdparanoia/cdparanoia-3.10.2-r2.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/cdparanoia/cdparanoia-3.10.2-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/cdparanoia/cdparanoia-3.10.2-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: cdparanoia-3.10.2-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/cdparanoia-3.10.2-r2.ebuild,v 1.1 2008/11/28 18:27:46 ssuominen Exp $
54
55 inherit base autotools eutils flag-o-matic libtool toolchain-funcs versionator
56
57 MY_P=${PN}-III-$(get_version_component_range 2-3)
58
59 DESCRIPTION="an advanced CDDA reader with error correction"
60 HOMEPAGE="http://www.xiph.org/paranoia"
61 SRC_URI="http://downloads.xiph.org/releases/cdparanoia/${MY_P}.src.tgz"
62
63 LICENSE="GPL-2 LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE=""
67
68 S=${WORKDIR}/${MY_P}
69
70 PATCHES=( "${FILESDIR}/${PN}-3.10.2-use-destdir.patch"
71 "${FILESDIR}/${PN}-3.10.2-Makefile.in.patch"
72 "${FILESDIR}/${P}-gcc43.patch"
73 "${FILESDIR}/${P}-ppc64.patch" )
74
75 src_unpack() {
76 base_src_unpack
77 cd "${S}"
78
79 mv configure.guess config.guess
80 mv configure.sub config.sub
81 sed -i -e '/configure.\(guess\|sub\)/d' configure.in || die "sed failed."
82
83 eautoconf
84 elibtoolize
85 }
86
87 src_compile() {
88 tc-export CC AR RANLIB
89 append-flags -I"${S}/interface"
90 econf
91 emake OPT="${CFLAGS}" || die "emake failed."
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die "emake install failed."
96 dodoc README
97 }