blob: d48d0a1536b1345f72cc7926112f189a4b2665bf (
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
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-misc/visitors/visitors-0.5.ebuild,v 1.3 2005/09/12 23:02:45 hansmi Exp $
DESCRIPTION="Visitors - fast web log analyzer"
HOMEPAGE="http://www.hping.org/visitors/"
SRC_URI="http://www.hping.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE="debug"
DEPEND=">=media-gfx/graphviz-1.10"
S="${WORKDIR}/${P/-/_}"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's:graph\.gif:graph.png:' doc.html
}
src_compile() {
local debug=""
use debug && debug="-g"
emake CCOPT="${CFLAGS}" DEBUG="${debug}" || die "emake failed"
}
src_install() {
dobin visitors
dodoc AUTHORS COPYING Changelog README TODO
dohtml doc.html graph.png visitors.css
}
|