blob: 952a29c352055a8146070a3d2d1ed7dd285dda52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
DESCRIPTION="dnswalk is a DNS database debugger"
HOMEPAGE="https://sourceforge.net/projects/dnswalk/"
SRC_URI="mirror://sourceforge/dnswalk/${P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
RDEPEND=">=dev-perl/Net-DNS-0.12"
S=${WORKDIR}
src_prepare() {
sed -i 's:#!/usr/contrib/bin/perl:#!'"${EPREFIX}"'/usr/bin/perl:' dnswalk
}
src_install () {
dobin dnswalk
dodoc CHANGES README TODO \
do-dnswalk makereports sendreports rfc1912.txt dnswalk.errors
doman dnswalk.1
}
|