Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/dillo: dillo-3.0.4.ebuild ChangeLog dillo-3.0.4.9999.ebuild
Date: Sat, 03 May 2014 20:55:30
Message-Id: 20140503205527.24A782004C@flycatcher.gentoo.org
1 jer 14/05/03 20:55:27
2
3 Modified: ChangeLog
4 Added: dillo-3.0.4.ebuild
5 Removed: dillo-3.0.4.9999.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.128 www-client/dillo/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?rev=1.128&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?rev=1.128&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?r1=1.127&r2=1.128
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v
21 retrieving revision 1.127
22 retrieving revision 1.128
23 diff -u -r1.127 -r1.128
24 --- ChangeLog 2 Feb 2014 19:52:52 -0000 1.127
25 +++ ChangeLog 3 May 2014 20:55:26 -0000 1.128
26 @@ -1,6 +1,12 @@
27 # ChangeLog for www-client/dillo
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.127 2014/02/02 19:52:52 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.128 2014/05/03 20:55:26 jer Exp $
31 +
32 +*dillo-3.0.4 (03 May 2014)
33 +
34 + 03 May 2014; Jeroen Roovers <jer@g.o> +dillo-3.0.4.ebuild,
35 + -dillo-3.0.4.9999.ebuild:
36 + Version bump.
37
38 *dillo-3.0.4.9999 (02 Feb 2014)
39
40
41
42
43 1.1 www-client/dillo/dillo-3.0.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/dillo-3.0.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/dillo-3.0.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dillo-3.0.4.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-3.0.4.ebuild,v 1.1 2014/05/03 20:55:26 jer Exp $
53
54 EAPI=5
55 inherit eutils flag-o-matic multilib toolchain-funcs
56
57 DESCRIPTION="Lean FLTK based web browser"
58 HOMEPAGE="http://www.dillo.org/"
59 SRC_URI="http://www.dillo.org/download/${P}.tar.bz2
60 mirror://gentoo/${PN}.png"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="doc +gif ipv6 +jpeg +png ssl"
66
67 RDEPEND="sys-libs/zlib
68 >=x11-libs/fltk-1.3:1[-cairo]
69 jpeg? ( virtual/jpeg )
70 png? ( >=media-libs/libpng-1.2:0 )
71 ssl? ( dev-libs/openssl:0 )"
72 DEPEND="${RDEPEND}
73 doc? ( app-doc/doxygen )"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}2-inbuf.patch
77 }
78
79 src_configure() {
80 append-ldflags "-L/usr/$(get_libdir)/fltk"
81
82 econf \
83 $(use_enable gif) \
84 $(use_enable ipv6) \
85 $(use_enable jpeg) \
86 $(use_enable png) \
87 $(use_enable ssl) \
88 --docdir="/usr/share/doc/${PF}"
89 }
90
91 src_compile() {
92 emake AR=$(tc-getAR)
93 if use doc; then
94 doxygen Doxyfile || die
95 fi
96 }
97
98 src_install() {
99 dodir /etc
100 default
101
102 use doc && dohtml html/*
103 dodoc AUTHORS ChangeLog README NEWS
104 dodoc doc/*.txt doc/README
105
106 doicon "${DISTDIR}"/${PN}.png
107 make_desktop_entry ${PN} Dillo
108 }
109
110 pkg_postinst() {
111 elog "Dillo has installed a default configuration into /etc/dillo/dillorc"
112 elog "You can copy this to ~/.dillo/ and customize it"
113 }