Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/apachetop/
Date: Fri, 29 Dec 2017 22:33:44
Message-Id: 1514586749.5b59387ea5af761fd37d7932792a76c6549099f5.soap@gentoo
1 commit: 5b59387ea5af761fd37d7932792a76c6549099f5
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 29 19:51:35 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 29 22:32:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b59387e
7
8 app-admin/apachetop: Remove old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-admin/apachetop/apachetop-0.12.6-r1.ebuild | 44 --------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/app-admin/apachetop/apachetop-0.12.6-r1.ebuild b/app-admin/apachetop/apachetop-0.12.6-r1.ebuild
16 deleted file mode 100644
17 index 2b4638b436a..00000000000
18 --- a/app-admin/apachetop/apachetop-0.12.6-r1.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit eutils autotools
27 -
28 -DESCRIPTION="A realtime Apache log analyzer"
29 -HOMEPAGE="http://www.webta.org/projects/apachetop"
30 -SRC_URI="http://www.webta.org/${PN}/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="amd64 hppa ~mips ppc sparc x86"
35 -IUSE="fam pcre adns"
36 -
37 -DEPEND="fam? ( virtual/fam )
38 - pcre? ( dev-libs/libpcre )
39 - adns? ( net-libs/adns )"
40 -RDEPEND="${DEPEND}"
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${P}-gcc41.patch
44 - epatch "${FILESDIR}"/${P}-configure.patch
45 - epatch "${FILESDIR}"/${P}-maxpathlen.patch
46 - epatch "${FILESDIR}"/${P}-ac_config_header.patch
47 - eautoreconf
48 -}
49 -
50 -src_configure() {
51 - econf --with-logfile=/var/log/apache2/access_log \
52 - $(use_with fam) \
53 - $(use_with pcre) \
54 - $(use_with adns)
55 -}
56 -
57 -src_compile() {
58 - emake || die "emake failed"
59 -}
60 -
61 -src_install() {
62 - make DESTDIR="${D}" install || die "make install failed"
63 - dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
64 -}