diff options
author | Michael Cummings <mcummings@gentoo.org> | 2003-10-06 12:06:59 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2003-10-06 12:06:59 +0000 |
commit | 855e78896494cda3a2c0df2936973e465c0cb2c0 (patch) | |
tree | f1664c92e5b03f0e0775882372edc6d9e683e782 /net-analyzer/nikto/nikto-1.31.ebuild | |
parent | Bug 12116 (diff) | |
download | gentoo-2-855e78896494cda3a2c0df2936973e465c0cb2c0.tar.gz gentoo-2-855e78896494cda3a2c0df2936973e465c0cb2c0.tar.bz2 gentoo-2-855e78896494cda3a2c0df2936973e465c0cb2c0.zip |
Bug 12116
Diffstat (limited to 'net-analyzer/nikto/nikto-1.31.ebuild')
-rw-r--r-- | net-analyzer/nikto/nikto-1.31.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/net-analyzer/nikto/nikto-1.31.ebuild b/net-analyzer/nikto/nikto-1.31.ebuild new file mode 100644 index 000000000000..ff56231be410 --- /dev/null +++ b/net-analyzer/nikto/nikto-1.31.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-1.31.ebuild,v 1.1 2003/10/06 12:06:56 mcummings Exp $ + +DESCRIPTION="Web Server vulnerability scanner." +HOMEPAGE="http://www.cirt.net/code/nikto.shtml" +SRC_URI="http://www.cirt.net/source/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +DEPEND=">=perl-5.6.1 + >=libwhisker-1.5 + >=nmap-3.00 + ssl? ( dev-libs/openssl ) " +RDEPEND=${DEPEND} +IUSE="" + +S="${WORKDIR}/${P}" + +src_unpack() { + unpack ${A} + einfo ${WORKDIR} + cd ${S} + sed -i -e 's:config.txt:nikto.conf:' \ + -i -e 's:\$CFG{configfile}="nikto.conf":\$CFG{configfile}="/etc/nikto/nikto.conf":' \ + nikto.pl + mv config.txt nikto.conf + sed -i -e 's:^#NMAP:NMAP:' \ + -i -e 's:^PROXYHOST:#PROXYHOST:' \ + -i -e 's:^PROXYPORT:#PROXYPORT:' \ + -i -e 's:^PROXYUSER:#PROXYUSER:' \ + -i -e 's:^PROXYPASS:#PROXYPASS:' \ + -i -e 's:# PLUGINDIR=/usr/local/nikto/plugins:PLUGINDIR=/usr/share/nikto/plugins:' \ + nikto.conf +} + +src_install() { + cd ${S} + insinto /etc/nikto + doins nikto.conf + cd docs + dodoc CHANGES.txt LICENSE.txt README_plugins.txt nikto_usage.txt + dohtml nikto_usage.html + cd .. + dodir /usr/bin + dobin nikto.pl + dosym /usr/bin/nikto.pl /usr/bin/nikto + dodir /usr/share/nikto/plugins + insinto /usr/share/nikto/plugins + cd plugins + doins * +} |