Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/dillo/
Date: Thu, 06 Aug 2020 11:55:15
Message-Id: 1596714910.499b7f16026017ed9077994d418079e56f6df8e1.jer@gentoo
1 commit: 499b7f16026017ed9077994d418079e56f6df8e1
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 6 11:54:15 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 11:55:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499b7f16
7
8 www-client/dillo: Old
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 www-client/dillo/dillo-3.0.5.ebuild | 65 -------------------------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/www-client/dillo/dillo-3.0.5.ebuild b/www-client/dillo/dillo-3.0.5.ebuild
17 deleted file mode 100644
18 index a5df51b20f8..00000000000
19 --- a/www-client/dillo/dillo-3.0.5.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils multilib toolchain-funcs
27 -
28 -DESCRIPTION="Lean FLTK based web browser"
29 -HOMEPAGE="https://www.dillo.org/"
30 -SRC_URI="https://www.dillo.org/download/${P}.tar.bz2
31 - mirror://gentoo/${PN}.png"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 sparc x86"
36 -IUSE="doc +gif ipv6 +jpeg +png ssl"
37 -
38 -RDEPEND="
39 - >=x11-libs/fltk-1.3
40 - sys-libs/zlib
41 - jpeg? ( virtual/jpeg:0 )
42 - png? ( >=media-libs/libpng-1.2:0 )
43 - ssl? ( dev-libs/openssl:0= )
44 -"
45 -DEPEND="
46 - ${RDEPEND}
47 - doc? ( app-doc/doxygen )
48 -"
49 -
50 -src_prepare() {
51 - epatch "${FILESDIR}"/${PN}2-inbuf.patch
52 -}
53 -
54 -src_configure() {
55 - econf \
56 - $(use_enable gif) \
57 - $(use_enable ipv6) \
58 - $(use_enable jpeg) \
59 - $(use_enable png) \
60 - $(use_enable ssl) \
61 - --docdir="/usr/share/doc/${PF}"
62 -}
63 -
64 -src_compile() {
65 - emake AR=$(tc-getAR)
66 - if use doc; then
67 - doxygen Doxyfile || die
68 - fi
69 -}
70 -
71 -src_install() {
72 - dodir /etc
73 - default
74 -
75 - use doc && dohtml html/*
76 - dodoc AUTHORS ChangeLog README NEWS
77 - dodoc doc/*.txt doc/README
78 -
79 - doicon "${DISTDIR}"/${PN}.png
80 - make_desktop_entry ${PN} Dillo
81 -}
82 -
83 -pkg_postinst() {
84 - elog "Dillo has installed a default configuration into /etc/dillo/dillorc"
85 - elog "You can copy this to ~/.dillo/ and customize it"
86 -}