diff options
author | Tobias Scherbaum <dertobi123@gentoo.org> | 2007-12-28 10:48:14 +0000 |
---|---|---|
committer | Tobias Scherbaum <dertobi123@gentoo.org> | 2007-12-28 10:48:14 +0000 |
commit | bf3389de32e1115c5cc815ae75c3bdbcf0727dcb (patch) | |
tree | e95080514a4486fd4a406a45938ef515625fc3ec /net-analyzer | |
parent | x86 stable, bug #203554 (diff) | |
download | gentoo-2-bf3389de32e1115c5cc815ae75c3bdbcf0727dcb.tar.gz gentoo-2-bf3389de32e1115c5cc815ae75c3bdbcf0727dcb.tar.bz2 gentoo-2-bf3389de32e1115c5cc815ae75c3bdbcf0727dcb.zip |
Version bump as per #199020, thanks to Frank Breedijk and Anton Bolshakov
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nikto/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nikto/files/digest-nikto-2.01 | 3 | ||||
-rw-r--r-- | net-analyzer/nikto/nikto-2.01.ebuild | 56 |
3 files changed, 65 insertions, 1 deletions
diff --git a/net-analyzer/nikto/ChangeLog b/net-analyzer/nikto/ChangeLog index c70981bf71b5..c24e2439ba0e 100644 --- a/net-analyzer/nikto/ChangeLog +++ b/net-analyzer/nikto/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nikto # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.22 2007/10/20 17:26:58 ian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.23 2007/12/28 10:48:14 dertobi123 Exp $ + +*nikto-2.01 (28 Dec 2007) + + 28 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org> +nikto-2.01.ebuild: + Version bump as per #199020, thanks to Frank Breedijk and Anton Bolshakov 20 Oct 2007; Christian Hartmann <ian@gentoo.org> nikto-1.36.ebuild: Fixed bug #193916 diff --git a/net-analyzer/nikto/files/digest-nikto-2.01 b/net-analyzer/nikto/files/digest-nikto-2.01 new file mode 100644 index 000000000000..7a528dbff52c --- /dev/null +++ b/net-analyzer/nikto/files/digest-nikto-2.01 @@ -0,0 +1,3 @@ +MD5 fefdb42ea4d5222ea403d9e37d468988 nikto-2.01.tar.bz2 194730 +RMD160 5706244c813e63cd0e0081bc7761a032b1ba0b7a nikto-2.01.tar.bz2 194730 +SHA256 f88493c3691034e8d56c0afbf3343438ff0d37cdfac26ee7d0bff480dbd9afcd nikto-2.01.tar.bz2 194730 diff --git a/net-analyzer/nikto/nikto-2.01.ebuild b/net-analyzer/nikto/nikto-2.01.ebuild new file mode 100644 index 000000000000..e407f9ca6f0a --- /dev/null +++ b/net-analyzer/nikto/nikto-2.01.ebuild @@ -0,0 +1,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 +} |