Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/feh: ChangeLog feh-1.16.ebuild
Date: Mon, 05 Sep 2011 17:22:58
Message-Id: 20110905172248.6F89E2004C@flycatcher.gentoo.org
1 hwoarang 11/09/05 17:22:48
2
3 Modified: ChangeLog
4 Added: feh-1.16.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.86 media-gfx/feh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.86&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?rev=1.86&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/ChangeLog?r1=1.85&r2=1.86
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v
20 retrieving revision 1.85
21 retrieving revision 1.86
22 diff -u -r1.85 -r1.86
23 --- ChangeLog 17 Aug 2011 03:30:29 -0000 1.85
24 +++ ChangeLog 5 Sep 2011 17:22:48 -0000 1.86
25 @@ -1,6 +1,11 @@
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.85 2011/08/17 03:30:29 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/ChangeLog,v 1.86 2011/09/05 17:22:48 hwoarang Exp $
30 +
31 +*feh-1.16 (05 Sep 2011)
32 +
33 + 05 Sep 2011; Markos Chandras <hwoarang@g.o> +feh-1.16.ebuild:
34 + Version bump
35
36 *feh-1.15.1 (17 Aug 2011)
37
38
39
40
41 1.1 media-gfx/feh/feh-1.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/feh/feh-1.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: feh-1.16.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.16.ebuild,v 1.1 2011/09/05 17:22:48 hwoarang Exp $
51
52 EAPI=4
53 inherit 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.4
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 feh_use() {
79 if use ${1}; then
80 echo 1
81 else
82 echo 0
83 fi
84 }
85
86 pkg_setup() {
87 fehopts=(
88 DESTDIR="${D}"
89 PREFIX=/usr
90 doc_dir='${main_dir}'/share/doc/${PF}
91 example_dir='${main_dir}'/share/doc/${PF}/examples
92 debug=$(feh_use debug)
93 curl=$(feh_use curl)
94 xinerama=$(feh_use xinerama)
95 )
96 }
97
98 src_compile() {
99 tc-export CC
100 emake "${fehopts[@]}"
101 }
102
103 src_install() {
104 emake "${fehopts[@]}" install
105 }