2020-09-23 13:52:19 +02:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
EGO_PN="github.com/miekg/${PN}"
|
|
|
|
|
2020-09-23 23:24:59 +02:00
|
|
|
inherit golang-base go-module
|
2020-09-23 13:52:19 +02:00
|
|
|
|
|
|
|
EGO_SUM=(
|
|
|
|
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2"
|
|
|
|
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod"
|
|
|
|
"golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550"
|
|
|
|
"golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod"
|
|
|
|
"golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee"
|
|
|
|
"golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod"
|
|
|
|
"golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3"
|
|
|
|
"golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod"
|
|
|
|
"golang.org/x/net v0.0.0-20190620200207-3b0461eec859"
|
|
|
|
"golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod"
|
|
|
|
"golang.org/x/net v0.0.0-20190923162816-aa69164e4478"
|
|
|
|
"golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod"
|
|
|
|
"golang.org/x/sync v0.0.0-20190423024810-112230192c58"
|
|
|
|
"golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod"
|
|
|
|
"golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a"
|
|
|
|
"golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod"
|
|
|
|
"golang.org/x/sys v0.0.0-20190412213103-97732733099d"
|
|
|
|
"golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod"
|
|
|
|
"golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe"
|
|
|
|
"golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod"
|
|
|
|
"golang.org/x/text v0.3.0"
|
|
|
|
"golang.org/x/text v0.3.0/go.mod"
|
|
|
|
"golang.org/x/tools v0.0.0-20191216052735-49a3e744a425"
|
|
|
|
"golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod"
|
|
|
|
"golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898"
|
|
|
|
"golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod"
|
|
|
|
)
|
|
|
|
go-module_set_globals
|
|
|
|
|
|
|
|
DESCRIPTION="DNS library in Go"
|
|
|
|
HOMEPAGE="https://github.com/miekg/dns"
|
|
|
|
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
|
|
${EGO_SUM_SRC_URI}"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
src_compile() {
|
2020-09-23 23:24:59 +02:00
|
|
|
go build -o ${PN} . || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto $(get_golibdir)
|
|
|
|
doins dns
|
|
|
|
einstalldocs
|
2020-09-23 13:52:19 +02:00
|
|
|
}
|