blob: a8187812517517e0927302e3721793fb295e5bca (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnswalk/dnswalk-2.0.2.ebuild,v 1.16 2007/07/16 14:43:35 armin76 Exp $
S=${WORKDIR}
DESCRIPTION="dnswalk is a DNS database debugger"
SRC_URI="mirror://sourceforge/dnswalk/${P}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/dnswalk/"
DEPEND=">=dev-perl/Net-DNS-0.12"
SLOT="0"
LICENSE="as-is"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
src_compile() {
sed -i 's:#!/usr/contrib/bin/perl:#!/usr/bin/perl:' dnswalk
}
src_install () {
dobin dnswalk
dodoc CHANGES README TODO \
do-dnswalk makereports sendreports rfc1912.txt dnswalk.errors
doman dnswalk.1
}
|