summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2011-07-17 15:52:46 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2011-07-17 15:52:46 +0000
commita4dba2dfeca53bda502619db9164fb61b654863e (patch)
tree0ba759e0c39db90da366d594b9b7b300e06612ff /net-analyzer/squidview
parentRhythmbox 0.12.x uses both musicbrainz slots (bug #357189 by dolphinling). (diff)
downloadhistorical-a4dba2dfeca53bda502619db9164fb61b654863e.tar.gz
historical-a4dba2dfeca53bda502619db9164fb61b654863e.tar.bz2
historical-a4dba2dfeca53bda502619db9164fb61b654863e.zip
Initial import of squidview tool to analyse squid log files.
Package-Manager: portage-2.2.0_alpha45/cvs/Linux x86_64
Diffstat (limited to 'net-analyzer/squidview')
-rw-r--r--net-analyzer/squidview/ChangeLog10
-rw-r--r--net-analyzer/squidview/Manifest14
-rw-r--r--net-analyzer/squidview/metadata.xml8
-rw-r--r--net-analyzer/squidview/squidview-0.79.ebuild26
4 files changed, 58 insertions, 0 deletions
diff --git a/net-analyzer/squidview/ChangeLog b/net-analyzer/squidview/ChangeLog
new file mode 100644
index 000000000000..b649b28fe528
--- /dev/null
+++ b/net-analyzer/squidview/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/squidview
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squidview/ChangeLog,v 1.1 2011/07/17 15:52:46 flameeyes Exp $
+
+*squidview-0.79 (17 Jul 2011)
+
+ 17 Jul 2011; Diego E. Pettenò <flameeyes@gentoo.org> +squidview-0.79.ebuild,
+ +metadata.xml:
+ Initial import of squidview tool to analyse squid log files.
+
diff --git a/net-analyzer/squidview/Manifest b/net-analyzer/squidview/Manifest
new file mode 100644
index 000000000000..b5c67a7fbbee
--- /dev/null
+++ b/net-analyzer/squidview/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST squidview-0.79.tar.gz 123661 RMD160 a1a839bc9d136aafdd9bccbbce933e19e7412000 SHA1 fa8f4b27f3b296432848993ea5197418bf716ef8 SHA256 675ae47df25f47a20543b1c233f9ef4e89093b481b90da21f0bc9ec0b8b3d2cc
+EBUILD squidview-0.79.ebuild 750 RMD160 e6d854fd6cc1a7079f5e5f0447f60ef946364d79 SHA1 391444073ccdf1e25bf032c2fbcf996029f2425a SHA256 b3a6d5ae3b881da651fd59d31201eed804577dabbb1a9616337747d2d607f9f0
+MISC ChangeLog 412 RMD160 704f4572ac72c3af7acff2fb85c16959803641e4 SHA1 ac76b6860822826cdc7f3be0ed2282f8a5ef69b8 SHA256 538056058e4ad2d2e34abfa7118c6233a3b41519da73c406ae9600d686a8b9fa
+MISC metadata.xml 235 RMD160 488d6ecd1c1820b26dc33205151f92bdc934be0e SHA1 6f6805d47f8da8e6000e7cdb6287826b95aeb23b SHA256 e4a78a3968e6c115253f45abdca2c8fb1accf8688ac3cfb3a97be6921a76e31c
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+iEYEARECAAYFAk4jBTcACgkQAiZjviIA2XhUDgCeLu0NhVa+i8HRmYcehECkgxjY
+QgUAn2W/m2cD+ijEolArpMGitW42fiH2
+=uqDs
+-----END PGP SIGNATURE-----
diff --git a/net-analyzer/squidview/metadata.xml b/net-analyzer/squidview/metadata.xml
new file mode 100644
index 000000000000..97e2b618fc32
--- /dev/null
+++ b/net-analyzer/squidview/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>net-proxy</herd>
+ <maintainer>
+ <email>flameeyes@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-analyzer/squidview/squidview-0.79.ebuild b/net-analyzer/squidview/squidview-0.79.ebuild
new file mode 100644
index 000000000000..b675573c9b8d
--- /dev/null
+++ b/net-analyzer/squidview/squidview-0.79.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squidview/squidview-0.79.ebuild,v 1.1 2011/07/17 15:52:46 flameeyes Exp $
+
+EAPI="4"
+
+DESCRIPTION="Interactive console program to analyse squid logs"
+HOMEPAGE="http://www.rillion.net/squidview/"
+SRC_URI="http://www.rillion.net/squidview/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64"
+
+RDEPEND="sys-libs/ncurses"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ # BUGS and HOWTO are installed also as part of the Makefile, but the
+ # program expects them at the right location, so we can't get rid of
+ # them there for now.
+ dodoc README AUTHORS BUGS HOWTO
+}