mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
30 lines
710 B
Bash
30 lines
710 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_P="${PN}_${PV}"
|
|
|
|
DESCRIPTION="HTTP fingerprinter tool"
|
|
HOMEPAGE="http://net-square.com/httprint.html"
|
|
SRC_URI="http://net-square.com/_assets/${PN}_linux_${PV}.zip"
|
|
|
|
S="${WORKDIR}"/${MY_P}/linux
|
|
LICENSE="no-source-code"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="allsigs"
|
|
|
|
RDEPEND="amd64? ( sys-libs/glibc[multilib] )"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
src_install() {
|
|
use allsigs && sed -i -e '/^#[a-zA-Z0-9]/ s/^#//g' signatures.txt
|
|
insinto /opt/${MY_P}/
|
|
doins nmapportlist.txt signatures.txt
|
|
exeinto /opt/${MY_P}/
|
|
doexe $PN
|
|
insinto /opt/${MY_P}/images/
|
|
doins images/*
|
|
dodoc input.txt readme.txt
|
|
}
|