Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/gphoto2: ChangeLog gphoto2-2.4.11.ebuild
Date: Fri, 01 Jul 2011 17:08:09
Message-Id: 20110701170759.60D9720051@flycatcher.gentoo.org
1 pacho 11/07/01 17:07:59
2
3 Modified: ChangeLog gphoto2-2.4.11.ebuild
4 Log:
5 Fix cdk detection and make it compatible with cdk[unicode] (bug #371569 reported by Juergen Rose, patch by Tim Harder and instructions to call configure by upstream.
6
7 (Portage version: 2.1.10.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.114 media-gfx/gphoto2/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.114&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.114&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?r1=1.113&r2=1.114
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v
19 retrieving revision 1.113
20 retrieving revision 1.114
21 diff -u -r1.113 -r1.114
22 --- ChangeLog 20 Jun 2011 16:44:41 -0000 1.113
23 +++ ChangeLog 1 Jul 2011 17:07:59 -0000 1.114
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-gfx/gphoto2
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.113 2011/06/20 16:44:41 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.114 2011/07/01 17:07:59 pacho Exp $
29 +
30 + 01 Jul 2011; Pacho Ramos <pacho@g.o> gphoto2-2.4.11.ebuild,
31 + +files/gphoto2-2.4.11-cdk-libs.patch:
32 + Fix cdk detection and make it compatible with cdk[unicode] (bug #371569
33 + reported by Juergen Rose, patch by Tim Harder and instructions to call
34 + configure by upstream.
35
36 *gphoto2-2.4.11 (20 Jun 2011)
37
38
39
40
41 1.2 media-gfx/gphoto2/gphoto2-2.4.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild?rev=1.2&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild?rev=1.2&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild?r1=1.1&r2=1.2
46
47 Index: gphoto2-2.4.11.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild,v
50 retrieving revision 1.1
51 retrieving revision 1.2
52 diff -u -r1.1 -r1.2
53 --- gphoto2-2.4.11.ebuild 20 Jun 2011 16:44:41 -0000 1.1
54 +++ gphoto2-2.4.11.ebuild 1 Jul 2011 17:07:59 -0000 1.2
55 @@ -1,10 +1,10 @@
56 # Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild,v 1.1 2011/06/20 16:44:41 pacho Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.11.ebuild,v 1.2 2011/07/01 17:07:59 pacho Exp $
60
61 EAPI="4"
62
63 -inherit eutils
64 +inherit eutils autotools
65
66 DESCRIPTION="free, redistributable digital camera software application"
67 HOMEPAGE="http://www.gphoto.org/"
68 @@ -30,8 +30,13 @@
69 dev-util/pkgconfig
70 nls? ( >=sys-devel/gettext-0.14 )"
71
72 +src_prepare() {
73 + epatch "${FILESDIR}/${P}-cdk-libs.patch"
74 + eautoreconf
75 +}
76 +
77 src_configure() {
78 - econf \
79 + CPPFLAGS="-I/usr/include/cdk" econf \
80 --docdir=/usr/share/doc/${PF} \
81 $(use_with aalib) \
82 $(use_with aalib jpeg) \