View previous topic :: View next topic |
Author |
Message |
angelacb n00b
Joined: 31 Oct 2003 Posts: 50
|
Posted: Sat May 28, 2005 6:58 pm Post subject: NLnet Labs drill 0.9.2 ebuild (Need a bigger hole) |
|
|
If you are interested in NLnet Labs' NSD (or not), you might also be interested in their drill utility. Drill is essentially an alternative to the "dig" utility provided by net-dns/bind-tools. However, if you "need a bigger hole", drill!
Description:
Quote: | Drill is a tool ala dig from BIND. It was designed with DNSSEC in mind and should be a useful debugging/query tool for DNSSEC. |
Web Site: http://www.nlnetlabs.nl/dnssec/drill.html
Setup the overlay path.
Code: | mkdir -p /usr/local/portage/net-dns/drill/files |
Place the following into the file /usr/local/portage/net-dns/drill/drill-0.9.2.ebuild:
Code: | # Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Drill is a tool similar to dig from BIND."
HOMEPAGE="http://www.nlnetlabs.nl/dnssec/drill.html"
SRC_URI="http://www.nlnetlabs.nl/downloads/drill/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86"
IUSE=""
RESTRICT="nomirror"
# The extracted directory only contains the release's name.
REAL_SRC=${WORKDIR}/${PN}
src_compile() {
cd ${REAL_SRC}
econf || die "econf failed"
emake || die "failed to compile drill"
}
src_install() {
cd ${REAL_SRC}
einstall || die "failed to install drill"
# Extra docs.
dodoc README
}
|
Now I guess we do the normal stuff:
Code: | ebuild /usr/local/portage/net-dns/drill/drill-0.9.2.ebuild digest
emerge drill |
_________________ Love Linux, Love Life |
|
Back to top |
|
|
Manfred n00b
Joined: 27 Apr 2004 Posts: 65
|
|
Back to top |
|
|
Manfred n00b
Joined: 27 Apr 2004 Posts: 65
|
Posted: Sat Nov 26, 2016 5:04 pm Post subject: |
|
|
Already in portage:
Just emerge
. . . net-dns/ldns-utils . . . <-- containing --> /usr/bin/drill
which will pull in
. . . net-libs/ldns
Thanks. |
|
Back to top |
|
|
|