summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenat Lumpau <rl03@gentoo.org>2005-09-28 00:30:31 +0000
committerRenat Lumpau <rl03@gentoo.org>2005-09-28 00:30:31 +0000
commit47ec573361c7094d7946c506a6eb98e8e05a68b6 (patch)
treec73267ae23da7779ea1bccda2a4489b1c169fe7f /app-admin/apachetop
parentInitial ebuild wrt bug #107129. (diff)
downloadgentoo-2-47ec573361c7094d7946c506a6eb98e8e05a68b6.tar.gz
gentoo-2-47ec573361c7094d7946c506a6eb98e8e05a68b6.tar.bz2
gentoo-2-47ec573361c7094d7946c506a6eb98e8e05a68b6.zip
Removing old versions
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-admin/apachetop')
-rw-r--r--app-admin/apachetop/ChangeLog6
-rw-r--r--app-admin/apachetop/apachetop-0.11.ebuild36
-rw-r--r--app-admin/apachetop/apachetop-0.12.ebuild37
-rw-r--r--app-admin/apachetop/files/digest-apachetop-0.111
-rw-r--r--app-admin/apachetop/files/digest-apachetop-0.121
5 files changed, 5 insertions, 76 deletions
diff --git a/app-admin/apachetop/ChangeLog b/app-admin/apachetop/ChangeLog
index d09c9cb383be..7d30a52e684c 100644
--- a/app-admin/apachetop/ChangeLog
+++ b/app-admin/apachetop/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/apachetop
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/ChangeLog,v 1.27 2005/08/23 01:13:09 hparker Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/ChangeLog,v 1.28 2005/09/28 00:30:31 rl03 Exp $
+
+ 28 Sep 2005; Renat Lumpau <rl03@gentoo.org> -apachetop-0.11.ebuild,
+ -apachetop-0.12.ebuild:
+ Removing old versions
23 Aug 2005; Homer Parker <hparker@gentoo.org> apachetop-0.12.5.ebuild:
Marked stable on amd64
diff --git a/app-admin/apachetop/apachetop-0.11.ebuild b/app-admin/apachetop/apachetop-0.11.ebuild
deleted file mode 100644
index 655a9e10eb24..000000000000
--- a/app-admin/apachetop/apachetop-0.11.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/apachetop-0.11.ebuild,v 1.7 2005/01/01 10:55:06 eradicator Exp $
-
-DESCRIPTION="A realtime Apache log analyzer"
-HOMEPAGE="http://clueful.shagged.org/apachetop/"
-SRC_URI="http://clueful.shagged.org/apachetop/files/${P}.tar.gz"
-
-IUSE="apache2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc ~mips ppc"
-
-DEPEND="!apache2? ( >=net-www/apache-1.3.28 )
- apache2? ( >=net-www/apache-2.0.47 )
- sys-apps/sed
- sys-libs/libtermcap-compat"
-
-src_compile() {
- if use apache2
- then
- sed -i 's%DEFAULT_LOGFILE "/var/httpd/apache_log"%DEFAULT_LOGFILE "/var/log/apache2/access_log"%' src/apachetop.h
- else
- sed -i 's%DEFAULT_LOGFILE "/var/httpd/apache_log"%DEFAULT_LOGFILE "/var/log/access_log"%' src/apachetop.h
- fi
- ./configure
- sed -i 's/-lcurses/-lncurses/' src/Makefile
- emake || die
-}
-
-src_install() {
- dobin src/apachetop || die
-
- dodoc README INSTALL TODO AUTHORS ChangeLog NEWS
-}
diff --git a/app-admin/apachetop/apachetop-0.12.ebuild b/app-admin/apachetop/apachetop-0.12.ebuild
deleted file mode 100644
index d928264cfe8b..000000000000
--- a/app-admin/apachetop/apachetop-0.12.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/apachetop/apachetop-0.12.ebuild,v 1.10 2005/01/01 10:55:06 eradicator Exp $
-
-DESCRIPTION="A realtime Apache log analyzer"
-HOMEPAGE="http://clueful.shagged.org/apachetop/"
-SRC_URI="http://clueful.shagged.org/apachetop/files/${P}.tar.gz"
-
-IUSE="apache2 fam pcre"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc ~mips ppc"
-
-DEPEND="sys-apps/sed"
-RDEPEND="sys-libs/libtermcap-compat
- fam? ( virtual/fam )
- pcre? ( dev-libs/libpcre )"
-
-src_compile() {
- if use apache2
- then
- sed -i 's%DEFAULT_LOGFILE "/var/httpd/apache_log"%DEFAULT_LOGFILE "/var/log/apache2/access_log"%' src/apachetop.h
- else
- sed -i 's%DEFAULT_LOGFILE "/var/httpd/apache_log"%DEFAULT_LOGFILE "/var/log/apache/access_log"%' src/apachetop.h
- fi
- local myconf
- myconf="${myconf} $(use_with fam) $(use_with pcre)"
- econf ${myconf}
- emake || die
-}
-
-src_install() {
- dobin src/apachetop || die
-
- dodoc README INSTALL TODO AUTHORS ChangeLog NEWS
-}
diff --git a/app-admin/apachetop/files/digest-apachetop-0.11 b/app-admin/apachetop/files/digest-apachetop-0.11
deleted file mode 100644
index 6b434903b8b9..000000000000
--- a/app-admin/apachetop/files/digest-apachetop-0.11
+++ /dev/null
@@ -1 +0,0 @@
-MD5 cd83ad174f792d971361093a04f82b07 apachetop-0.11.tar.gz 124473
diff --git a/app-admin/apachetop/files/digest-apachetop-0.12 b/app-admin/apachetop/files/digest-apachetop-0.12
deleted file mode 100644
index 7fd2eec1c331..000000000000
--- a/app-admin/apachetop/files/digest-apachetop-0.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 be26959e66325208ae3396f5f7182c1d apachetop-0.12.tar.gz 132225