Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/visitors/
Date: Mon, 04 Mar 2019 23:45:54
Message-Id: 1551743141.ef016f0f3d991293673ffce34f1ddeaa75509fb9.bman@gentoo
1 commit: ef016f0f3d991293673ffce34f1ddeaa75509fb9
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 4 23:45:22 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 4 23:45:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef016f0f
7
8 www-misc/visitors: drop old EAPI
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.12
12
13 www-misc/visitors/visitors-0.7-r1.ebuild | 39 --------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/www-misc/visitors/visitors-0.7-r1.ebuild b/www-misc/visitors/visitors-0.7-r1.ebuild
17 deleted file mode 100644
18 index 470c1035fc8..00000000000
19 --- a/www-misc/visitors/visitors-0.7-r1.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Fast web log analyzer"
30 -HOMEPAGE="http://www.hping.org/visitors/"
31 -SRC_URI="http://www.hping.org/${PN}/${P}.tar.gz"
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 ppc x86"
35 -IUSE=""
36 -
37 -S="${WORKDIR}/${P/-/_}"
38 -
39 -src_prepare() {
40 - sed -i doc.html \
41 - -e 's:graph\.gif:graph.png:' \
42 - || die "sed doc.html"
43 - sed -i Makefile \
44 - -e 's| -o | $(LDFLAGS)&|g' \
45 - || die "sed Makefile"
46 -}
47 -
48 -src_compile() {
49 - emake \
50 - CC=$(tc-getCC) \
51 - CFLAGS="${CFLAGS} -Wall -W" \
52 - DEBUG="" \
53 - || die "emake failed"
54 -}
55 -
56 -src_install() {
57 - dobin visitors
58 - dodoc AUTHORS Changelog README TODO
59 - dohtml doc.html visitors.css visitors.png
60 -}