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-1.13.ebuild
Date: Sun, 08 May 2011 10:16:44
Message-Id: 20110508101633.CA04420054@flycatcher.gentoo.org
1 radhermit 11/05/08 10:16:33
2
3 Modified: ChangeLog
4 Added: feh-1.13.ebuild
5 Log:
6 Version bump. Update HOMEPAGE and SRC_URI, bump to EAPI 4, install examples in the correct directory, and remove old postinst message.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.77 media-gfx/feh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.77&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.77&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.76&r2=1.77
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
20 retrieving revision 1.76
21 retrieving revision 1.77
22 diff -u -r1.76 -r1.77
23 --- ChangeLog 11 Apr 2011 16:25:13 -0000 1.76
24 +++ ChangeLog 8 May 2011 10:16:33 -0000 1.77
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/feh
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.76 2011/04/11 16:25:13 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.77 2011/05/08 10:16:33 radhermit Exp $
30 +
31 +*feh-1.13 (08 May 2011)
32 +
33 + 08 May 2011; Tim Harder <radhermit@g.o> +feh-1.13.ebuild:
34 + Version bump. Update HOMEPAGE and SRC_URI, bump to EAPI 4, install examples
35 + in the correct directory, and remove old postinst message.
36
37 11 Apr 2011; Kacper Kowalik <xarthisius@g.o> feh-1.12.ebuild:
38 ppc64 stable wrt #354063
39
40
41
42 1.1 media-gfx/feh/feh-1.13.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.13.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.13.ebuild?rev=1.1&content-type=text/plain
46
47 Index: feh-1.13.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.13.ebuild,v 1.1 2011/05/08 10:16:33 radhermit Exp $
52
53 EAPI=4
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="A fast, lightweight imageviewer using imlib2"
57 HOMEPAGE="http://feh.finalrewind.org/"
58 SRC_URI="http://feh.finalrewind.org/${P}.tar.bz2"
59
60 LICENSE="as-is"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="test xinerama"
64
65 COMMON_DEPEND=">=media-libs/giblib-1.2.4
66 media-libs/imlib2
67 >=media-libs/libpng-1.4
68 x11-libs/libX11
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 fehopts=(
80 DESTDIR="${D}"
81 PREFIX=/usr
82 doc_dir='${main_dir}'/share/doc/${PF}
83 example_dir='${main_dir}'/share/doc/${PF}/examples
84 )
85 }
86
87 src_prepare() {
88 if ! use xinerama; then
89 sed -i -e '/^xinerama/d' config.mk || die
90 fi
91 }
92
93 src_compile() {
94 tc-export CC
95 emake "${fehopts[@]}"
96 }
97
98 src_install() {
99 emake "${fehopts[@]}" install
100 }