blob: e407f9ca6f0a1755ea8fab5b605e85428e7eede0 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-2.01.ebuild,v 1.1 2007/12/28 10:48:14 dertobi123 Exp $
DESCRIPTION="Web Server vulnerability scanner."
HOMEPAGE="http://www.cirt.net/code/nikto.shtml"
SRC_URI="http://www.cirt.net/source/nikto/ARCHIVE/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="ssl"
RDEPEND="dev-lang/perl
>=net-analyzer/nmap-3.00
ssl? (
dev-libs/openssl
dev-perl/Net-SSLeay
)"
src_compile() {
sed -i -e 's:config.txt:nikto.conf:' \
-i -e 's:"\$NIKTO{execdir}/kbase/nikto.kbase":"/var/nikto/kbase/nikto.kbase":' \
-i -e 's:\$NIKTO{configfile} = "nikto.conf":\$NIKTO{configfile} = "/etc/nikto/nikto.conf":' \
nikto.pl
mv config.txt nikto.conf
sed -i -e 's:/usr/local/bin/nmap:/usr/bin/nmap:' \
-i -e 's:# EXECDIR=/usr/local/nikto:EXECDIR=/usr/share/nikto:' \
nikto.conf
}
src_install() {
insinto /etc/nikto
doins nikto.conf
dodir /usr/bin
dobin nikto.pl
dosym /usr/bin/nikto.pl /usr/bin/nikto
dodir /usr/share/nikto/plugins
insinto /usr/share/nikto/plugins
doins plugins/*
dodir /usr/share/nikto/templates
insinto /usr/share/nikto/templates
doins templates/*
dodir /var/nikto/kbase
dodoc plugins/nikto_plugin_order.txt
cd docs
dodoc CHANGES.txt LICENSE.txt
dohtml nikto_manual.html
}
|