Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/feh: ChangeLog feh-1.3.5.ebuild
Date: Mon, 22 Feb 2010 08:24:08
Message-Id: E1NjTaC-0008ND-PG@stork.gentoo.org
1 ssuominen 10/02/22 08:24:00
2
3 Modified: ChangeLog
4 Added: feh-1.3.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.33 media-gfx/feh/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 9 Aug 2008 12:34:17 -0000 1.32
23 +++ ChangeLog 22 Feb 2010 08:24:00 -0000 1.33
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/feh
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.32 2008/08/09 12:34:17 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.33 2010/02/22 08:24:00 ssuominen Exp $
30 +
31 +*feh-1.3.5 (22 Feb 2010)
32 +
33 + 22 Feb 2010; Samuli Suominen <ssuominen@g.o> +feh-1.3.5.ebuild:
34 + Version bump.
35
36 09 Aug 2008; Markus Meier <maekke@g.o> feh-1.3.4.ebuild:
37 block <sci-astronomy/xephem-3.7.3 as this version is fixed, bug #224705
38
39
40
41 1.1 media-gfx/feh/feh-1.3.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/feh/feh-1.3.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/feh/feh-1.3.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: feh-1.3.5.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/feh/feh-1.3.5.ebuild,v 1.1 2010/02/22 08:24:00 ssuominen Exp $
51
52 EAPI=2
53 inherit autotools eutils
54
55 DESCRIPTION="A fast, lightweight imageviewer using imlib2"
56 HOMEPAGE="https://derf.homelinux.org/~derf/projects/feh/"
57 SRC_URI="mirror://debian/pool/main/f/${PN}/${PN}_${PV}.orig.tar.bz2"
58
59 LICENSE="as-is"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="xinerama"
63
64 RDEPEND="!<sci-astronomy/xephem-3.7.3
65 >=media-libs/giblib-1.2.4
66 >=media-libs/imlib2-1.0.0
67 >=media-libs/jpeg-6b:0
68 media-libs/libpng
69 x11-libs/libX11
70 x11-libs/libXext
71 xinerama? ( x11-libs/libXinerama )
72 x11-libs/libXt"
73 DEPEND="${RDEPEND}
74 x11-proto/xproto
75 x11-proto/xineramaproto"
76
77 src_prepare() {
78 rm -f configure.ac
79 epatch "${FILESDIR}"/${PN}-1.3.4-xinerama.patch \
80 "${FILESDIR}"/${PN}-1.3.4-headers.patch
81 sed -i -e "/^docsdir =/s:doc/feh:share/doc/${PF}:" Makefile.am || die
82 # the bundled autotool code was generated with automake-1.4
83 # but there's no reason to restrict to that version #141427
84 eautoreconf
85 }
86
87 src_configure() {
88 econf \
89 $(use_enable xinerama)
90 }
91
92 src_install() {
93 emake install DESTDIR="${D}" || die
94 dodoc AUTHORS ChangeLog README TODO
95 }