diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-01-27 14:16:55 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-01-28 08:47:27 +0000 |
commit | 02a8926a970a3d1413a7f4acd85a5ab92233deb6 (patch) | |
tree | 6d78c1f43e18ed2be48dea7463f4d8950c18d26c /net-analyzer/nikto | |
parent | net-im/prosody: Add v0.9.10 for sec bug 573158 (diff) | |
download | gentoo-02a8926a970a3d1413a7f4acd85a5ab92233deb6.tar.gz gentoo-02a8926a970a3d1413a7f4acd85a5ab92233deb6.tar.bz2 gentoo-02a8926a970a3d1413a7f4acd85a5ab92233deb6.zip |
net-analyzer/nikto: Make use of the PN variable.
Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-analyzer/nikto')
-rw-r--r-- | net-analyzer/nikto/nikto-2.1.5.ebuild | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/net-analyzer/nikto/nikto-2.1.5.ebuild b/net-analyzer/nikto/nikto-2.1.5.ebuild index 694c4affa5d6..94704c8d4d64 100644 --- a/net-analyzer/nikto/nikto-2.1.5.ebuild +++ b/net-analyzer/nikto/nikto-2.1.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -34,21 +34,24 @@ src_prepare() { src_compile() { :; } src_install() { - insinto /etc/nikto - doins nikto.conf + insinto "/etc/${PN}" + doins "${PN}.conf" - dobin nikto.pl - dosym nikto.pl /usr/bin/nikto + mv "${PN}.pl" "${PN}" || die + dobin "${PN}" insinto /usr/share/nikto doins -r plugins templates databases - NIKTO_PMS='JSON-PP.pm' - einfo "symlinking ${NIKTO_PMS} to ${VENDOR_LIB}" + local NIKTO_PMS=( + JSON-PP.pm + ) - for _PM in ${NIKTO_PMS}; do - _TARGET=${VENDOR_LIB}/${_PM} - dosym /usr/share/nikto/plugins/${_PM} ${_TARGET} + einfo "Symlinking ${NIKTO_PMS[@]} to ${VENDOR_LIB}" + + for _PM in "${NIKTO_PMS[@]}"; do + _TARGET="${VENDOR_LIB}/${_PM}" + dosym "/usr/share/nikto/plugins/${_PM}" "${_TARGET}" done dodoc docs/*.txt |