mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
massdns: new tool (deps for net-analyzer/osmedeus)
This commit is contained in:
parent
8da97ebb43
commit
2b7ca8ef55
4 changed files with 47 additions and 0 deletions
1
net-analyzer/massdns/Manifest
Normal file
1
net-analyzer/massdns/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST massdns-0.2_p20190201.tar.gz 696332 BLAKE2B f1a910c0faa35cb0527489e764787b073eae41c86a04567b1c39e31614981eb697149aed28a9d98ee07a2730908cde88cd4f9a432be6a8b397095af390e94dfb SHA512 e7061fc13b9d84fc53d070204d9bc691f976a85927d0b3b1fc1448ebc248c23c429b75649209d1ed9b9d18006da3fc78ebba4302b4151b38fa4f3dcafa489283
|
||||
1
net-analyzer/massdns/massdns-0.2_p20190201.ebuild
Symbolic link
1
net-analyzer/massdns/massdns-0.2_p20190201.ebuild
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
./massdns-9999.ebuild
|
||||
37
net-analyzer/massdns/massdns-9999.ebuild
Normal file
37
net-analyzer/massdns/massdns-9999.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
CMAKE_MAKEFILE_GENERATOR="emake"
|
||||
CMAKE_IN_SOURCE_BUILD="true"
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="A high-performance DNS stub resolver for bulk lookups and reconnaissance"
|
||||
HOMEPAGE="https://github.com/blechschmidt/massdns"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/blechschmidt/massdns"
|
||||
else
|
||||
HASH_COMMIT="68482ebdaab59373d034196828953ec7f633b076"
|
||||
SRC_URI="https://github.com/blechschmidt/massdns/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT=0
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
dodoc README.md Dockerfile
|
||||
|
||||
insinto "/usr/share/${PN}"
|
||||
doins -r lists scripts
|
||||
}
|
||||
8
net-analyzer/massdns/metadata.xml
Normal file
8
net-analyzer/massdns/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
Loading…
Reference in a new issue