Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/feh: ChangeLog feh-2.3.ebuild
Date: Fri, 03 Feb 2012 07:13:45
Message-Id: 20120203071332.B3AAD2004B@flycatcher.gentoo.org
1 radhermit 12/02/03 07:13:32
2
3 Modified: ChangeLog
4 Added: feh-2.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.98 media-gfx/feh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.98&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.98&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.97&r2=1.98
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
20 retrieving revision 1.97
21 retrieving revision 1.98
22 diff -u -r1.97 -r1.98
23 --- ChangeLog 19 Jan 2012 08:03:00 -0000 1.97
24 +++ ChangeLog 3 Feb 2012 07:13:32 -0000 1.98
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/feh
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.97 2012/01/19 08:03:00 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.98 2012/02/03 07:13:32 radhermit Exp $
30 +
31 +*feh-2.3 (03 Feb 2012)
32 +
33 + 03 Feb 2012; Tim Harder <radhermit@g.o> +feh-2.3.ebuild:
34 + Version bump.
35
36 19 Jan 2012; Samuli Suominen <ssuominen@g.o>
37 -files/feh-1.11.2-libpng15.patch, -feh-1.12.ebuild, -feh-2.0.ebuild,
38
39
40
41 1.1 media-gfx/feh/feh-2.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-2.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-2.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: feh-2.3.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-2.3.ebuild,v 1.1 2012/02/03 07:13:32 radhermit Exp $
51
52 EAPI=4
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="A fast, lightweight imageviewer using imlib2"
56 HOMEPAGE="http://feh.finalrewind.org/"
57 SRC_URI="http://feh.finalrewind.org/${P}.tar.bz2"
58
59 LICENSE="as-is"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="debug curl test xinerama"
63
64 COMMON_DEPEND=">=media-libs/giblib-1.2.4
65 media-libs/imlib2
66 >=media-libs/libpng-1.2:0
67 x11-libs/libX11
68 curl? ( net-misc/curl )
69 xinerama? ( x11-libs/libXinerama )"
70 RDEPEND="${COMMON_DEPEND}
71 virtual/jpeg"
72 DEPEND="${COMMON_DEPEND}
73 x11-libs/libXt
74 x11-proto/xproto
75 test? ( >=dev-lang/perl-5.10
76 dev-perl/Test-Command )"
77
78 pkg_setup() {
79 use_feh() { usex $1 1 0; }
80
81 fehopts=(
82 DESTDIR="${D}"
83 PREFIX=/usr
84 doc_dir='${main_dir}'/share/doc/${PF}
85 example_dir='${main_dir}'/share/doc/${PF}/examples
86 debug=$(use_feh debug)
87 curl=$(use_feh curl)
88 xinerama=$(use_feh xinerama)
89 )
90 }
91
92 src_compile() {
93 tc-export CC
94 emake "${fehopts[@]}"
95 }
96
97 src_install() {
98 emake "${fehopts[@]}" install
99 }