blob: 12988160ab467d6814a5c7e9f495b56e9a10e8ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
}
|