Install this version:
emerge -a =net-dns/massdns-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-dns/massdns-9999
Or alternatively:
emerge --autounmask-write -a =net-dns/massdns-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake edo git-r3
DESCRIPTION="A high-performance DNS stub resolver"
HOMEPAGE="https://github.com/blechschmidt/massdns"
EGIT_REPO_URI="https://github.com/blechschmidt/${PN}.git"
LICENSE="GPL-3"
SLOT="0"
IUSE="ipv6 test"
RESTRICT="test"
PROPERTIES="test_network"
BDEPEND="test? ( app-misc/jq )"
src_prepare() {
! use ipv6 && edo rm -rf tests/single-lookup-A-ipv6-resolver
cmake_src_prepare
}
src_test() {
# mimic expected layout
edo mkdir bin
edo ln -s ../../massdns-1.1.0_build/bin/massdns bin/
edo tests/run-tests.sh
}
src_install() {
einstalldocs
dobin "${S}"_build/bin/massdns
dodoc -r lists
}
Manage flags for this package:
euse -i <flag> -p net-dns/massdns |
euse -E <flag> -p net-dns/massdns |
euse -D <flag> -p net-dns/massdns
test? ( app-misc/jq )