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.8.ebuild feh-1.7.ebuild
Date: Fri, 25 Jun 2010 17:18:17
Message-Id: 20100625171808.41E082CF65@corvid.gentoo.org
1 ssuominen 10/06/25 17:18:08
2
3 Modified: ChangeLog
4 Added: feh-1.8.ebuild
5 Removed: feh-1.7.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.46 media-gfx/feh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 11 Jun 2010 15:09:55 -0000 1.45
24 +++ ChangeLog 25 Jun 2010 17:18:08 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/feh
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.45 2010/06/11 15:09:55 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.46 2010/06/25 17:18:08 ssuominen Exp $
30 +
31 +*feh-1.8 (25 Jun 2010)
32 +
33 + 25 Jun 2010; Samuli Suominen <ssuominen@g.o> +feh-1.8.ebuild:
34 + Version bump.
35
36 *feh-1.7 (11 Jun 2010)
37
38
39
40
41 1.1 media-gfx/feh/feh-1.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: feh-1.8.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.8.ebuild,v 1.1 2010/06/25 17:18:08 ssuominen Exp $
51
52 EAPI=2
53 inherit toolchain-funcs
54
55 DESCRIPTION="A fast, lightweight imageviewer using imlib2"
56 HOMEPAGE="https://derf.homelinux.org/~derf/projects/feh/"
57 SRC_URI="http://www.chaosdorf.de/~derf/feh/${P}.tar.bz2"
58
59 LICENSE="as-is"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="xinerama"
63
64 COMMON_DEPEND=">=media-libs/giblib-1.2.4
65 media-libs/imlib2
66 >=media-libs/libpng-1.2.43
67 x11-libs/libX11
68 xinerama? ( x11-libs/libXinerama )"
69 RDEPEND="${COMMON_DEPEND}
70 >=media-libs/jpeg-8a"
71 DEPEND="${COMMON_DEPEND}
72 x11-libs/libXt
73 x11-proto/xproto"
74
75 pkg_setup() {
76 fehopts=(
77 "DESTDIR=${D}"
78 "PREFIX=/usr"
79 "doc_dir=${D}/usr/share/doc/${PF}"
80 )
81 }
82
83 src_prepare() {
84 if ! use xinerama; then
85 sed -i -e '/^xinerama/d' config.mk || die
86 fi
87 }
88
89 src_compile() {
90 tc-export CC
91 emake "${fehopts[@]}" || die
92 }
93
94 src_install() {
95 emake "${fehopts[@]}" install || die
96 prepalldocs
97 }