Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/gthumb: ChangeLog gthumb-2.10.6.ebuild gthumb-2.10.5.ebuild
Date: Sun, 16 Sep 2007 21:42:19
Message-Id: E1IX1lN-0000t0-M1@stork.gentoo.org
1 eva 07/09/16 21:34:45
2
3 Modified: ChangeLog gthumb-2.10.6.ebuild
4 Removed: gthumb-2.10.5.ebuild
5 Log:
6 add raw and iptc support
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.74 media-gfx/gthumb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.74&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.74&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/ChangeLog?r1=1.73&r2=1.74
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v
19 retrieving revision 1.73
20 retrieving revision 1.74
21 diff -u -r1.73 -r1.74
22 --- ChangeLog 30 Aug 2007 20:15:58 -0000 1.73
23 +++ ChangeLog 16 Sep 2007 21:34:45 -0000 1.74
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-gfx/gthumb
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v 1.73 2007/08/30 20:15:58 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v 1.74 2007/09/16 21:34:45 eva Exp $
29 +
30 + 16 Sep 2007; Gilles Dartiguelongue <eva@g.o> -gthumb-2.10.5.ebuild,
31 + gthumb-2.10.6.ebuild:
32 + add libopenraw under raw USE flag and remove jpeg USE
33
34 30 Aug 2007; Gilles Dartiguelongue <eva@g.o> gthumb-2.10.5.ebuild,
35 gthumb-2.10.6.ebuild:
36
37
38
39 1.3 media-gfx/gthumb/gthumb-2.10.6.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild?r1=1.2&r2=1.3
44
45 Index: gthumb-2.10.6.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- gthumb-2.10.6.ebuild 30 Aug 2007 20:15:58 -0000 1.2
52 +++ gthumb-2.10.6.ebuild 16 Sep 2007 21:34:45 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2007 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild,v 1.2 2007/08/30 20:15:58 eva Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/gthumb-2.10.6.ebuild,v 1.3 2007/09/16 21:34:45 eva Exp $
58
59 inherit eutils gnome2
60
61 @@ -8,12 +8,12 @@
62 HOMEPAGE="http://gthumb.sourceforge.net/"
63 LICENSE="GPL-2"
64
65 -IUSE="exif gphoto2 jpeg tiff"
66 +IUSE="exif gphoto2 iptc raw tiff"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
69
70 # FIXME
71 -# missing: libopenraw-0.0.2, libiptcdata-0.2.1
72 +# missing: libiptcdata-0.2.1
73 # what is gtkunique ???
74
75 RDEPEND=">=dev-libs/glib-2.6
76 @@ -26,11 +26,13 @@
77 >=gnome-base/libglade-2.4
78 exif? ( >=media-libs/libexif-0.6.13 )
79 gphoto2? ( >=media-libs/libgphoto2-2.1.3 )
80 + iptc? ( >=media-libs/libiptcdata-0.2.1 )
81 >=gnome-base/libbonobo-2.6
82 >=gnome-base/libbonoboui-2.6
83 >=gnome-base/gconf-2.6
84 media-libs/jpeg
85 - tiff? ( media-libs/tiff )"
86 + tiff? ( media-libs/tiff )
87 + raw? ( media-libs/libopenraw )"
88
89 DEPEND="${RDEPEND}
90 x11-proto/inputproto
91 @@ -44,5 +46,7 @@
92 pkg_setup() {
93 G2CONF="$(use_enable exif) \
94 $(use_enable gphoto2) \
95 + $(use_enable raw libopenraw) \
96 + $(use_enable iptc iptcdata) \
97 $(use_enable tiff)"
98 }
99
100
101
102 --
103 gentoo-commits@g.o mailing list