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.11.6.ebuild
Date: Tue, 31 Aug 2010 21:32:40
Message-Id: 20100831213233.4A54520051@flycatcher.gentoo.org
1 eva 10/08/31 21:32:33
2
3 Modified: ChangeLog
4 Added: gthumb-2.11.6.ebuild
5 Log:
6 Version bump. Lots of fixes and translation updates.
7
8 (Portage version: 2.2_rc72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.116 media-gfx/gthumb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.116&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.116&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?r1=1.115&r2=1.116
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v
20 retrieving revision 1.115
21 retrieving revision 1.116
22 diff -u -r1.115 -r1.116
23 --- ChangeLog 18 Jul 2010 18:06:07 -0000 1.115
24 +++ ChangeLog 31 Aug 2010 21:32:33 -0000 1.116
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/gthumb
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v 1.115 2010/07/18 18:06:07 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v 1.116 2010/08/31 21:32:33 eva Exp $
30 +
31 +*gthumb-2.11.6 (31 Aug 2010)
32 +
33 + 31 Aug 2010; Gilles Dartiguelongue <eva@g.o> +gthumb-2.11.6.ebuild:
34 + Version bump. Lots of fixes and translation updates.
35
36 *gthumb-2.11.5-r1 (18 Jul 2010)
37
38
39
40
41 1.1 media-gfx/gthumb/gthumb-2.11.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/gthumb-2.11.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/gthumb-2.11.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gthumb-2.11.6.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/gthumb-2.11.6.ebuild,v 1.1 2010/08/31 21:32:33 eva Exp $
51
52 EAPI="3"
53
54 inherit gnome2
55
56 DESCRIPTION="Image viewer and browser for Gnome"
57 HOMEPAGE="http://gthumb.sourceforge.net"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
62 IUSE="cdr exif gnome-keyring gstreamer http raw slideshow tiff test"
63
64 RDEPEND=">=dev-libs/glib-2.16:2
65 >=x11-libs/gtk+-2.20:2
66 >=gnome-base/gconf-2.6
67 >=dev-libs/libunique-1.1.2
68 >=media-libs/jpeg-8:0
69 cdr? ( >=app-cdr/brasero-2.28 )
70 exif? ( >=media-gfx/exiv2-0.18 )
71 gnome-keyring? ( >=gnome-base/gnome-keyring-2.28 )
72 gstreamer? (
73 >=media-libs/gstreamer-0.10
74 >=media-libs/gst-plugins-base-0.10 )
75 http? (
76 >=net-libs/libsoup-2.26:2.4
77 >=net-libs/libsoup-gnome-2.26:2.4 )
78 slideshow? (
79 >=media-libs/clutter-1:1.0
80 >=media-libs/clutter-gtk-0.10:1.0 )
81 tiff? ( media-libs/tiff )
82 raw? ( >=media-libs/libopenraw-0.0.8 )
83 !raw? ( media-gfx/dcraw )"
84 DEPEND="${RDEPEND}
85 dev-util/pkgconfig
86 app-text/scrollkeeper
87 >=dev-util/intltool-0.35
88 app-text/gnome-doc-utils
89 test? ( ~app-text/docbook-xml-dtd-4.1.2 )"
90 # eautoreconf needs:
91 # gnome-base/gnome-common
92
93 DOCS="AUTHORS ChangeLog NEWS README"
94
95 pkg_setup() {
96 G2CONF="${G2CONF}
97 --disable-static
98 $(use_enable cdr libbrasero)
99 $(use_enable exif exiv2)
100 $(use_enable gstreamer)
101 $(use_enable gnome-keyring)
102 $(use_enable http libsoup)
103 $(use_enable raw libopenraw)
104 $(use_enable slideshow clutter)
105 $(use_enable test test-suite)
106 $(use_enable tiff)"
107 }
108
109 src_install() {
110 gnome2_src_install
111
112 # gthumb does not need *.la files
113 find "${D}" -name "*.la" -delete || die "*.la files removal failed"
114 }