Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/dillo: ChangeLog dillo-2.2.1.ebuild
Date: Mon, 01 Aug 2011 15:38:20
Message-Id: 20110801153809.06CD02004C@flycatcher.gentoo.org
1 patrick 11/08/01 15:38:09
2
3 Modified: ChangeLog
4 Added: dillo-2.2.1.ebuild
5 Log:
6 Bump for #376559
7
8 (Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.94 www-client/dillo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?rev=1.94&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?rev=1.94&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/ChangeLog?r1=1.93&r2=1.94
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v
20 retrieving revision 1.93
21 retrieving revision 1.94
22 diff -u -r1.93 -r1.94
23 --- ChangeLog 8 Nov 2010 12:38:58 -0000 1.93
24 +++ ChangeLog 1 Aug 2011 15:38:08 -0000 1.94
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-client/dillo
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.93 2010/11/08 12:38:58 nelchael Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.94 2011/08/01 15:38:08 patrick Exp $
31 +
32 +*dillo-2.2.1 (01 Aug 2011)
33 +
34 + 01 Aug 2011; Patrick Lauer <patrick@g.o> +dillo-2.2.1.ebuild:
35 + Bump for #376559
36
37 08 Nov 2010; Krzysztof Pawlik <nelchael@g.o> dillo-2.2.ebuild,
38 dillo-9999.ebuild:
39
40
41
42 1.1 www-client/dillo/dillo-2.2.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/dillo-2.2.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/dillo/dillo-2.2.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dillo-2.2.1.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/www-client/dillo/dillo-2.2.1.ebuild,v 1.1 2011/08/01 15:38:08 patrick Exp $
52
53 EAPI="2"
54 inherit eutils flag-o-matic multilib
55
56 DESCRIPTION="Lean FLTK2-based web browser"
57 HOMEPAGE="http://www.dillo.org/"
58 SRC_URI="http://www.dillo.org/download/${P}.tar.bz2"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="doc +gif ipv6 +jpeg +png ssl"
64
65 RDEPEND="x11-libs/fltk:2[-cairo,jpeg=,png=]
66 sys-libs/zlib
67 jpeg? ( virtual/jpeg )
68 png? ( media-libs/libpng )
69 ssl? ( dev-libs/openssl )"
70 DEPEND="${RDEPEND}
71 doc? ( app-doc/doxygen )"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/dillo2-inbuf.patch
75 }
76
77 src_configure() {
78 append-ldflags "-L/usr/$(get_libdir)/fltk"
79 econf \
80 $(use_enable gif) \
81 $(use_enable ipv6) \
82 $(use_enable jpeg) \
83 $(use_enable png) \
84 $(use_enable ssl)
85 }
86
87 src_compile() {
88 emake || die "make failed"
89 if use doc ; then
90 doxygen Doxyfile || die "doxygen failed"
91 fi
92 }
93
94 src_install() {
95 dodir /etc
96 emake DESTDIR="${D}" install || die "install failed"
97
98 if use doc; then
99 dohtml html/* || die "install documentation failed"
100 fi
101 dodoc AUTHORS ChangeLog README NEWS
102 docinto doc
103 dodoc doc/*.txt doc/README
104
105 doicon "${FILESDIR}"/dillo.png
106 make_desktop_entry dillo Dillo dillo
107 }
108
109 pkg_postinst() {
110 elog "Dillo has installed a default configuration into /etc/dillo/dillorc"
111 elog "You can copy this to ~/.dillo/ and customize it"
112 }