diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-03-21 14:37:41 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-03-21 14:37:41 +0000 |
commit | ff598e4b2e431c7a0942d51dc91ca4ac74b45ba3 (patch) | |
tree | 76dd4ab70c2ec4d8df828689a8033b8f93f8c90a /net-analyzer/nikto/nikto-2.03.ebuild | |
parent | use esvn_clean; clean python eclass usage (diff) | |
download | historical-ff598e4b2e431c7a0942d51dc91ca4ac74b45ba3.tar.gz historical-ff598e4b2e431c7a0942d51dc91ca4ac74b45ba3.tar.bz2 historical-ff598e4b2e431c7a0942d51dc91ca4ac74b45ba3.zip |
drop old; fix SLOT operators
Package-Manager: portage-2.2.18/cvs/Linux x86_64
Manifest-Sign-Key: 0xB9D4F231BD1558AB!
Diffstat (limited to 'net-analyzer/nikto/nikto-2.03.ebuild')
-rw-r--r-- | net-analyzer/nikto/nikto-2.03.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/net-analyzer/nikto/nikto-2.03.ebuild b/net-analyzer/nikto/nikto-2.03.ebuild deleted file mode 100644 index 8edcd38057f5..000000000000 --- a/net-analyzer/nikto/nikto-2.03.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-2.03.ebuild,v 1.4 2014/08/10 20:59:48 slyfox Exp $ - -EAPI="3" - -DESCRIPTION="Web Server vulnerability scanner" -HOMEPAGE="http://www.cirt.net/Nikto2" -SRC_URI="http://www.cirt.net/source/nikto/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="ssl" - -RDEPEND="dev-lang/perl - >=net-analyzer/nmap-3.00 - ssl? ( - dev-libs/openssl - dev-perl/Net-SSLeay - )" - -S=${WORKDIR}/${PN} - -src_prepare() { - mv config.txt nikto.conf - - sed -i -e 's:config.txt:nikto.conf:g' \ - plugins/* docs/nikto.1 nikto.pl || die - - sed -i -e 's:config.txt:nikto.conf:' \ - -i -e "s:\(\$NIKTO{configfile} = \)\"nikto.conf\":\1\"${EPREFIX}/etc/nikto/nikto.conf\":" \ - nikto.pl || die - - sed -i -e "s:/usr/local/bin/nmap:${EPREFIX}/usr/bin/nmap:" \ - -i -e "s:# EXECDIR=/usr/local/nikto:EXECDIR=${EPREFIX}/usr/share/nikto:" \ - nikto.conf || die - - find -depth -name .svn -type d -exec rm -rf {} + -} - -src_install() { - insinto /etc/nikto - doins nikto.conf || die - - dobin nikto.pl || die - dosym nikto.pl /usr/bin/nikto || die - - dodir /usr/share/nikto - insinto /usr/share/nikto - doins -r plugins templates || die - - dodoc plugins/nikto_plugin_order.txt - dodoc docs/*.txt - dohtml docs/nikto_manual.html -} |