I'm trying to emerge nikto and get these messages:
root@wizard net-libs # emerge -vp nikto
These are the packages that I would merge, in order:
Calculating dependencies ...done!
[ebuild N F ] net-libs/libwhisker-1.8 +ssl 107 kB
[ebuild N ] net-analyzer/nikto-1.32 +ssl 337 kB
root@wizard net-libs # emerge nikto
Calculating dependencies ...done!
>>> emerge (1 of 2) net-libs/libwhisker-1.8 to /
!!! libwhisker-current.tar.gz not found in /usr/portage/distfiles.
!!! net-libs/libwhisker-1.8 has fetch restriction turned on.
!!! This probably means that this ebuild's files must be downloaded
!!! manually. See the comments in the ebuild for more information.
OK, let's see what the ebuild says:
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libwhisker/libwhisker-1.8.ebuild,v 1.7 2004/06/24 23:15:23 agriffis Exp $
DESCRIPTION="Perl module geared to HTTP testing."
HOMEPAGE="http://www.wiretrip.net/rfp/"
SRC_URI="http://www.wiretrip.net/rfp/libwhisker/ ... ent.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc"
IUSE="ssl"
DEPEND=">=dev-lang/perl-5.6.1
ssl? ( >=dev-perl/Net-SSLeay-1.19 )"
RESTRICT="fetch"
pkg_nofetch() {
einfo "Could not find the libwhisker tarball!"
einfo "It could not be fetched normally because http://www.wiretrip.net "
einfo "denies the wget User-Agent header."
einfo "You can find this library in: "
einfo ${SRC_URI}
}
src_compile() {
cd ${S}
perl Makefile.pl lib
}
src_install() {
cd ${S}
vendor_perl=`perl -e 'use Config; print $Config{installvendorlib}'`
dodir ${vendor_perl}
insinto ${vendor_perl}
doins LW.pm
dodoc docs/OPTIMIZE docs/evil.htm docs/whisker_hash.txt
dodoc simple.pl api_demo.pl README
perl scripts/func2html.pl LW.pm >> LW.html
dohtml LW.html
}
I'm at a bit of a loss as to where to download which libwhisker tarball and where to extract it to in order to perform the emerge.
Any help would be greatly appreciated.



