diff options
Diffstat (limited to 'net-analyzer/nikto')
-rw-r--r-- | net-analyzer/nikto/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nikto/Manifest | 3 | ||||
-rw-r--r-- | net-analyzer/nikto/files/digest-nikto-1.32 | 1 | ||||
-rw-r--r-- | net-analyzer/nikto/nikto-1.32.ebuild | 51 |
4 files changed, 61 insertions, 1 deletions
diff --git a/net-analyzer/nikto/ChangeLog b/net-analyzer/nikto/ChangeLog index 829829506a3b..55832dced781 100644 --- a/net-analyzer/nikto/ChangeLog +++ b/net-analyzer/nikto/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nikto # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.4 2004/03/21 14:18:58 mboman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.5 2004/03/29 15:51:20 mcummings Exp $ + +*nikto-1.32 (29 Mar 2004) + + 29 Mar 2004; Michael Cummings <mcummings@gentoo.org> nikto-1.32.ebuild: + version bump 21 Mar 2004; Michael Boman <mboman@gentoo.org> nikto-1.31.ebuild: QA: Unnecessary definition of S removed. Adding categories to dependencies. diff --git a/net-analyzer/nikto/Manifest b/net-analyzer/nikto/Manifest index 40fb7fbae88d..0866425e9b2c 100644 --- a/net-analyzer/nikto/Manifest +++ b/net-analyzer/nikto/Manifest @@ -1,4 +1,7 @@ MD5 1f0e7b047e954838151a19fd36c79059 ChangeLog 888 MD5 e2d8f1bf77722def1dd432e26455c818 metadata.xml 305 MD5 c32f08e66ad03895880573d6aa1846cd nikto-1.31.ebuild 1404 +MD5 1ce0276a47b60352cdcd22bcf7c49430 nikto-1.32.ebuild 1320 +MD5 afd87dfa15d7bd818b800c3e728215c2 .nikto-1.32.ebuild.swp 12288 MD5 4fd028ff30a713c4de5e0e295c8e09c8 files/digest-nikto-1.31 62 +MD5 c7d3ed85e44e02c2c975d8695ff3b0ae files/digest-nikto-1.32 65 diff --git a/net-analyzer/nikto/files/digest-nikto-1.32 b/net-analyzer/nikto/files/digest-nikto-1.32 new file mode 100644 index 000000000000..635d752e84ff --- /dev/null +++ b/net-analyzer/nikto/files/digest-nikto-1.32 @@ -0,0 +1 @@ +MD5 3dec9a442669c917c8e45a1c80527c79 nikto-current.tar.gz 345290 diff --git a/net-analyzer/nikto/nikto-1.32.ebuild b/net-analyzer/nikto/nikto-1.32.ebuild new file mode 100644 index 000000000000..9944a3c17fad --- /dev/null +++ b/net-analyzer/nikto/nikto-1.32.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-1.32.ebuild,v 1.1 2004/03/29 15:51:20 mcummings Exp $ + +MY_P=nikto-current +DESCRIPTION="Web Server vulnerability scanner." +HOMEPAGE="http://www.cirt.net/code/nikto.shtml" +SRC_URI="http://www.cirt.net/nikto/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc ~sparc" +RDEPEND=${DEPEND} +RDEPEND=">=dev-lang/perl + >=net-libs/libwhisker-1.5 + >=net-analyzer/nmap-3.00 + ssl? ( dev-libs/openssl ) " +IUSE="" + +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 * +} |