Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/geeqie: ChangeLog geeqie-1.0-r4.ebuild
Date: Fri, 15 Jun 2012 09:37:09
Message-Id: 20120615093653.9BB7B2004B@flycatcher.gentoo.org
1 voyageur 12/06/15 09:36:53
2
3 Modified: ChangeLog
4 Added: geeqie-1.0-r4.ebuild
5 Log:
6 Fix scrolling when walking up directory list with upstream bugtracker patch, bug #420891. Switch to base eclass and PATCHES list
7
8 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 media-gfx/geeqie/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/geeqie/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 7 Jun 2012 23:08:30 -0000 1.22
24 +++ ChangeLog 15 Jun 2012 09:36:53 -0000 1.23
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-gfx/geeqie
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/geeqie/ChangeLog,v 1.22 2012/06/07 23:08:30 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/geeqie/ChangeLog,v 1.23 2012/06/15 09:36:53 voyageur Exp $
30 +
31 +*geeqie-1.0-r4 (15 Jun 2012)
32 +
33 + 15 Jun 2012; Bernard Cafarelli <voyageur@g.o> +geeqie-1.0-r4.ebuild,
34 + +files/geeqie-1.0-up_path_restore.patch:
35 + Fix scrolling when walking up directory list with upstream bugtracker patch,
36 + bug #420891. Switch to base eclass and PATCHES list
37
38 *geeqie-1.0-r3 (07 Jun 2012)
39
40
41
42
43 1.1 media-gfx/geeqie/geeqie-1.0-r4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/geeqie-1.0-r4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/geeqie-1.0-r4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: geeqie-1.0-r4.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/geeqie/geeqie-1.0-r4.ebuild,v 1.1 2012/06/15 09:36:53 voyageur Exp $
53
54 EAPI=4
55 inherit autotools base eutils
56
57 DESCRIPTION="A lightweight GTK image viewer forked from GQview"
58 HOMEPAGE="http://geeqie.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/geeqie/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="doc exif lcms lirc xmp"
65
66 RDEPEND="x11-libs/gtk+:2
67 virtual/libintl
68 doc? ( app-text/gnome-doc-utils )
69 lcms? ( =media-libs/lcms-1* )
70 lirc? ( app-misc/lirc )
71 xmp? ( >=media-gfx/exiv2-0.17[xmp] )
72 !xmp? ( exif? ( >=media-gfx/exiv2-0.17 ) )"
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig
75 dev-util/intltool
76 sys-devel/gettext"
77
78 PATCHES=(
79 "${FILESDIR}"/${P}-automake-1.11.patch
80 "${FILESDIR}"/${P}-copy_chown.patch
81 "${FILESDIR}"/${P}-filedata_compare.patch
82 "${FILESDIR}"/${P}-fix_fullscreen.patch
83 "${FILESDIR}"/${P}-lfs_support.patch
84 "${FILESDIR}"/${P}-ui_pathsel.patch
85 "${FILESDIR}"/${P}-vflist-refresh.patch
86 "${FILESDIR}"/${P}-up_path_restore.patch
87 )
88
89 src_prepare() {
90 base_src_prepare
91 eautoreconf
92 }
93
94 src_configure() {
95 local myconf="--disable-dependency-tracking
96 --with-readmedir=/usr/share/doc/${PF}
97 $(use_enable lcms)
98 $(use_enable lirc)"
99
100 if use exif || use xmp; then
101 myconf="${myconf} --enable-exiv2"
102 else
103 myconf="${myconf} --disable-exiv2"
104 fi
105
106 econf ${myconf}
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install
111 rm -f "${D}/usr/share/doc/${MY_P}/COPYING"
112 }
113
114 pkg_postinst() {
115 elog "Some plugins may require additional packages"
116 elog "- Image rotate plugin: media-gfx/fbida (JPEG), media-gfx/imagemagick (TIFF/PNG)"
117 elog "- RAW images plugin: media-gfx/ufraw"
118 }