diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-04 09:23:07 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-04 09:23:07 +0000 |
commit | f1e074e23570b1647e510c78b0c1283f53a44a4b (patch) | |
tree | db83e0c3a56b71e44f5310802570404ee1dff094 | |
parent | Fixed stubear's "updates" to this ebuild which made it not compile anymore (diff) | |
download | historical-f1e074e23570b1647e510c78b0c1283f53a44a4b.tar.gz historical-f1e074e23570b1647e510c78b0c1283f53a44a4b.tar.bz2 historical-f1e074e23570b1647e510c78b0c1283f53a44a4b.zip |
added new package, squidsites
-rw-r--r-- | net-analyzer/squidsites/ChangeLog | 10 | ||||
-rw-r--r-- | net-analyzer/squidsites/files/digest-squidsites-1.01 | 1 | ||||
-rw-r--r-- | net-analyzer/squidsites/squidsites-1.01.ebuild | 23 |
3 files changed, 34 insertions, 0 deletions
diff --git a/net-analyzer/squidsites/ChangeLog b/net-analyzer/squidsites/ChangeLog new file mode 100644 index 000000000000..8abb24b47c23 --- /dev/null +++ b/net-analyzer/squidsites/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-analyzer/squidsites +# Copyright 2001-2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squidsites/ChangeLog,v 1.1 2002/08/04 09:23:07 cybersystem Exp $ + +* squidsites-1.01 (4 August 2002) + + 4 August 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, squidsites-1.01.ebuild, files/digest-squidsites-1.01 : + + Initial version in Portage now.. + diff --git a/net-analyzer/squidsites/files/digest-squidsites-1.01 b/net-analyzer/squidsites/files/digest-squidsites-1.01 new file mode 100644 index 000000000000..de97cdfba76f --- /dev/null +++ b/net-analyzer/squidsites/files/digest-squidsites-1.01 @@ -0,0 +1 @@ +MD5 9d39d09b9d2ce93a1d17934e1ecfb43e squidsites-1.01.tar.gz 23646 diff --git a/net-analyzer/squidsites/squidsites-1.01.ebuild b/net-analyzer/squidsites/squidsites-1.01.ebuild new file mode 100644 index 000000000000..73f557745bd5 --- /dev/null +++ b/net-analyzer/squidsites/squidsites-1.01.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squidsites/squidsites-1.01.ebuild,v 1.1 2002/08/04 09:23:07 cybersystem Exp $ + +DESCRIPTION="Squidsites is a tool that parses Squid access log file and generates a report of the most visited sites." +HOMEPAGE="http://www.stefanopassiglia.com/downloads.htm" +SRC_URI="http://www.stefanopassiglia.com/downloads/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="1" +KEYWORDS="ppc x86" +DEPEND="sys-libs/glibc" +RDEPEND="sys-libs/glibc" +S=${WORKDIR}/src + +src_compile() { + emake || die +} + +src_install () { + cd ${WORKDIR} + dobin src/squidsites + dodoc Authors Bugs ChangeLog GNU-Manifesto.html README +} |