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/libipoddevice: ChangeLog libipoddevice-0.5.3.ebuild
Date: Thu, 30 Apr 2009 09:05:16
Message-Id: E1LzSCg-0005IE-9q@stork.gentoo.org
1 ssuominen 09/04/30 09:05:14
2
3 Modified: ChangeLog libipoddevice-0.5.3.ebuild
4 Log:
5 Remove -Werror wrt #260908
6 (Portage version: 2.1.6.11/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.23 media-libs/libipoddevice/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/ChangeLog?rev=1.23&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/ChangeLog?rev=1.23&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/ChangeLog?r1=1.22&r2=1.23
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/ChangeLog,v
18 retrieving revision 1.22
19 retrieving revision 1.23
20 diff -u -r1.22 -r1.23
21 --- ChangeLog 5 Oct 2008 09:44:00 -0000 1.22
22 +++ ChangeLog 30 Apr 2009 09:05:14 -0000 1.23
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/libipoddevice
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/ChangeLog,v 1.22 2008/10/05 09:44:00 loki_val Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/ChangeLog,v 1.23 2009/04/30 09:05:14 ssuominen Exp $
29 +
30 + 30 Apr 2009; Samuli Suominen <ssuominen@g.o>
31 + libipoddevice-0.5.3.ebuild:
32 + Remove -Werror wrt #260908
33
34 05 Oct 2008; Peter Alfredsen <loki_val@g.o>
35 libipoddevice-0.5.3.ebuild:
36 @@ -16,7 +20,8 @@
37 Fix building with >=sys-apps/sg3_utils-1.26, bug 229641. Ed Catmur
38 <ed@×××××××××.uk> supplied the patch. Again.
39
40 - 10 Jan 2008; Samuli Suominen <drac@g.o> libipoddevice-0.5.3.ebuild:
41 + 10 Jan 2008; Samuli Suominen <ssuominen@g.o>
42 + libipoddevice-0.5.3.ebuild:
43 Fix depends wrt #204868
44
45 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
46
47
48
49 1.10 media-libs/libipoddevice/libipoddevice-0.5.3.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild?rev=1.10&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild?rev=1.10&content-type=text/plain
53 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild?r1=1.9&r2=1.10
54
55 Index: libipoddevice-0.5.3.ebuild
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild,v
58 retrieving revision 1.9
59 retrieving revision 1.10
60 diff -u -r1.9 -r1.10
61 --- libipoddevice-0.5.3.ebuild 5 Oct 2008 09:44:00 -0000 1.9
62 +++ libipoddevice-0.5.3.ebuild 30 Apr 2009 09:05:14 -0000 1.10
63 @@ -1,6 +1,6 @@
64 -# Copyright 1999-2008 Gentoo Foundation
65 +# Copyright 1999-2009 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild,v 1.9 2008/10/05 09:44:00 loki_val Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libipoddevice/libipoddevice-0.5.3.ebuild,v 1.10 2009/04/30 09:05:14 ssuominen Exp $
69
70 inherit base autotools
71
72 @@ -30,11 +30,14 @@
73 cd "${S}"
74 # use correct libdir in pkgconfig file
75 sed -i -e 's:^libdir=.*:libdir=@libdir@:' \
76 - ipoddevice.pc.in || die "sed failed."
77 + ipoddevice.pc.in || die "sed failed"
78 + # Remove -Werror wrt #260908
79 + sed -i -e 's:-Werror::' src/Makefile.am \
80 + || die "sed failed"
81 eautoreconf
82 }
83
84 src_install() {
85 - emake DESTDIR="${D}" install || die "emake install failed."
86 + emake DESTDIR="${D}" install || die "emake install failed"
87 dodoc ChangeLog NEWS README
88 }