Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libcdio: libcdio-0.80.ebuild ChangeLog
Date: Sun, 31 Aug 2008 13:33:38
Message-Id: E1KZn3f-0005P1-Fw@stork.gentoo.org
1 flameeyes 08/08/31 13:33:35
2
3 Modified: libcdio-0.80.ebuild ChangeLog
4 Log:
5 Fix linking of libiconv where needed.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
7
8 Revision Changes Path
9 1.7 dev-libs/libcdio/libcdio-0.80.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild?r1=1.6&r2=1.7
14
15 Index: libcdio-0.80.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- libcdio-0.80.ebuild 16 Jul 2008 08:37:01 -0000 1.6
22 +++ libcdio-0.80.ebuild 31 Aug 2008 13:33:34 -0000 1.7
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild,v 1.6 2008/07/16 08:37:01 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.80.ebuild,v 1.7 2008/08/31 13:33:34 flameeyes Exp $
28
29 EAPI=1
30
31 @@ -32,6 +32,14 @@
32 sed -i -e 's:noinst_PROGRAMS:EXTRA_PROGRAMS:' test/Makefile.am \
33 || die "unable to remove testdefault build"
34
35 + # Fix building against libiconv
36 + sed -i -e 's:@LIBICONV@:$(LTLIBICONV):' lib/driver/Makefile.am \
37 + || die "unable to fix libiconv link - part 1"
38 +
39 + find . -name Makefile.am -print0 | xargs -0 \
40 + sed -i -e 's:$(LIBICONV):$(LTLIBICONV):' \
41 + || die "unable to fix libiconv link - part 2"
42 +
43 eautomake
44 elibtoolize
45 }
46
47
48
49 1.102 dev-libs/libcdio/ChangeLog
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/ChangeLog?rev=1.102&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/ChangeLog?rev=1.102&content-type=text/plain
53 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libcdio/ChangeLog?r1=1.101&r2=1.102
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v
58 retrieving revision 1.101
59 retrieving revision 1.102
60 diff -u -r1.101 -r1.102
61 --- ChangeLog 16 Jul 2008 08:37:01 -0000 1.101
62 +++ ChangeLog 31 Aug 2008 13:33:34 -0000 1.102
63 @@ -1,6 +1,9 @@
64 # ChangeLog for dev-libs/libcdio
65 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.101 2008/07/16 08:37:01 aballier Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.102 2008/08/31 13:33:34 flameeyes Exp $
68 +
69 + 31 Aug 2008; Diego Pettenò <flameeyes@g.o> libcdio-0.80.ebuild:
70 + Fix linking of libiconv where needed.
71
72 16 Jul 2008; Alexis Ballier <aballier@g.o>
73 +files/libcdio-0.80-fbsd.patch, libcdio-0.80.ebuild: