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.12.0.ebuild
Date: Tue, 28 Sep 2010 19:04:51
Message-Id: 20100928190444.4206220051@flycatcher.gentoo.org
1 eva 10/09/28 19:04:44
2
3 Modified: ChangeLog
4 Added: gthumb-2.12.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2_rc88/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.117 media-gfx/gthumb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.117&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?rev=1.117&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/ChangeLog?r1=1.116&r2=1.117
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v
20 retrieving revision 1.116
21 retrieving revision 1.117
22 diff -u -r1.116 -r1.117
23 --- ChangeLog 31 Aug 2010 21:32:33 -0000 1.116
24 +++ ChangeLog 28 Sep 2010 19:04:44 -0000 1.117
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.116 2010/08/31 21:32:33 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gthumb/ChangeLog,v 1.117 2010/09/28 19:04:44 eva Exp $
30 +
31 +*gthumb-2.12.0 (28 Sep 2010)
32 +
33 + 28 Sep 2010; Gilles Dartiguelongue <eva@g.o> +gthumb-2.12.0.ebuild:
34 + Version bump.
35
36 *gthumb-2.11.6 (31 Aug 2010)
37
38
39
40
41 1.1 media-gfx/gthumb/gthumb-2.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/gthumb-2.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gthumb/gthumb-2.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gthumb-2.12.0.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.12.0.ebuild,v 1.1 2010/09/28 19:04:44 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 # TODO: beware, can link to brasero-3
65 RDEPEND=">=dev-libs/glib-2.16:2
66 >=x11-libs/gtk+-2.20:2
67 >=gnome-base/gconf-2.6
68 >=dev-libs/libunique-1.1.2
69 >=media-libs/jpeg-8:0
70 media-libs/libpng:0
71 cdr? ( >=app-cdr/brasero-2.28 )
72 exif? ( >=media-gfx/exiv2-0.18 )
73 gnome-keyring? ( >=gnome-base/gnome-keyring-2.28 )
74 gstreamer? (
75 >=media-libs/gstreamer-0.10
76 >=media-libs/gst-plugins-base-0.10 )
77 http? (
78 >=net-libs/libsoup-2.26:2.4
79 >=net-libs/libsoup-gnome-2.26:2.4 )
80 slideshow? (
81 >=media-libs/clutter-1:1.0
82 >=media-libs/clutter-gtk-0.10:1.0 )
83 tiff? ( media-libs/tiff )
84 raw? ( >=media-libs/libopenraw-0.0.8 )
85 !raw? ( media-gfx/dcraw )"
86 DEPEND="${RDEPEND}
87 dev-util/pkgconfig
88 app-text/scrollkeeper
89 >=dev-util/intltool-0.35
90 app-text/gnome-doc-utils
91 test? ( ~app-text/docbook-xml-dtd-4.1.2 )"
92 # eautoreconf needs:
93 # gnome-base/gnome-common
94
95 DOCS="AUTHORS ChangeLog NEWS README"
96
97 pkg_setup() {
98 G2CONF="${G2CONF}
99 --disable-static
100 --disable-maintainer-mode
101 $(use_enable cdr libbrasero)
102 $(use_enable exif exiv2)
103 $(use_enable gstreamer)
104 $(use_enable gnome-keyring)
105 $(use_enable http libsoup)
106 $(use_enable raw libopenraw)
107 $(use_enable slideshow clutter)
108 $(use_enable test test-suite)
109 $(use_enable tiff)"
110 }
111
112 src_prepare() {
113 gnome2_src_prepare
114
115 # Remove unwanted CFLAGS added with USE=debug
116 sed 's/CFLAGS+=" -g -O0 -DDEBUG"//' -i configure.ac configure || die
117 }
118
119 src_install() {
120 gnome2_src_install
121
122 # gthumb does not need *.la files
123 find "${D}" -name "*.la" -delete || die "*.la files removal failed"
124 }