diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-04-07 23:21:01 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-04-07 23:21:01 +0000 |
commit | 3c5c4b756b70c3f68a30f4f631bfe76940bf49e5 (patch) | |
tree | 64bb11f65b88ea2711d8a7a805ff2661e64e38eb /net-analyzer | |
parent | version bump, with new skins (diff) | |
download | gentoo-2-3c5c4b756b70c3f68a30f4f631bfe76940bf49e5.tar.gz gentoo-2-3c5c4b756b70c3f68a30f4f631bfe76940bf49e5.tar.bz2 gentoo-2-3c5c4b756b70c3f68a30f4f631bfe76940bf49e5.zip |
added new update, in unstable presently due to package freeze
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/squid-graph/ChangeLog | 14 | ||||
-rw-r--r-- | net-analyzer/squid-graph/files/digest-squid-graph-3.1 | 2 | ||||
-rw-r--r-- | net-analyzer/squid-graph/squid-graph-3.1.ebuild | 26 |
3 files changed, 40 insertions, 2 deletions
diff --git a/net-analyzer/squid-graph/ChangeLog b/net-analyzer/squid-graph/ChangeLog index 75f844d41b45..d03a103fe329 100644 --- a/net-analyzer/squid-graph/ChangeLog +++ b/net-analyzer/squid-graph/ChangeLog @@ -1,10 +1,20 @@ # ChangeLog for net-analyzer/squid-graph # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squid-graph/ChangeLog,v 1.5 2003/02/12 15:19:57 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/squid-graph/ChangeLog,v 1.6 2003/04/07 23:21:01 robbat2 Exp $ - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords +* squid-graph-3.1 (07 April 2003) + 07 April 2003; Robin Hugh Johnson <robbat2@gentoo.org> + squid-graph-3.1.ebuild, ChangeLog, files/digest-squid-graph-3.1: + Added ebuild for new version. + In unstable due to package upgrade freeze. + Changes in ebuild: + 1. 'prepalldocs' to compress html pages + 2. SRCURI has .gz added + Ebuild contributed by Russell Cloran <russell@rucus.ru.ac.za> * squid-graph-3.0 (12 August 2002) + + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords 18 Oct 2002; Seemant Kulleen <seemant@gentoo.org> squid-graph-3.0.ebuild : diff --git a/net-analyzer/squid-graph/files/digest-squid-graph-3.1 b/net-analyzer/squid-graph/files/digest-squid-graph-3.1 new file mode 100644 index 000000000000..c8dc0f61bc22 --- /dev/null +++ b/net-analyzer/squid-graph/files/digest-squid-graph-3.1 @@ -0,0 +1,2 @@ +MD5 a51b66a2d2646ae5fae04cdf41200644 /squid-graph-3.1.ebuild 638 +MD5 e9565daabc23599094ed2d0e9a984d5e squid-graph-3.1.tar.gz 349135 diff --git a/net-analyzer/squid-graph/squid-graph-3.1.ebuild b/net-analyzer/squid-graph/squid-graph-3.1.ebuild new file mode 100644 index 000000000000..12988160ab46 --- /dev/null +++ b/net-analyzer/squid-graph/squid-graph-3.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +S=${WORKDIR}/${P} +DESCRIPTION="Squid logfile analyzer and traffic grapher" +HOMEPAGE="http://www.squid-graph.dhs.org" +SRC_URI="http://www.squid-graph.dhs.org/files/stable/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~ppc ~x86 ~sparc" + +DEPEND="dev-perl/GD" + +src_install () { + dobin bin/apacheconv bin/generate.cgi bin/squid-graph bin/timeconv + dodoc docs/CHANGELOG docs/README + dohtml docs/html/* + prepalldocs +} + +pkg_postinst () { + einfo "Remember to copy /usr/share/doc/${P}/html/logo.png to your output directory" +} + + |