net-analyzer/massdns - 9999 (pentoo)

Search

Install

Install this version:

emerge -a =net-analyzer/massdns-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-analyzer/massdns-9999

Or alternatively:

emerge --autounmask-write -a =net-analyzer/massdns-9999

Package Information

Description:
A high-performance DNS stub resolver for bulk lookups and reconnaissance
Homepage:
https://github.com/blechschmidt/massdns
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

CMAKE_IN_SOURCE_BUILD="true"

inherit cmake

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
	SRC_URI="https://github.com/blechschmidt/massdns/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
fi

LICENSE="GPL-3"
SLOT="0"

src_install() {
	dobin bin/${PN}
	dodoc README.md Dockerfile

	insinto "/usr/share/${PN}"
	doins -r lists
	insopts -m755
	doins -r scripts
}

Inherited Eclasses