diff options
author | John-Mark Gurney <jmg@FreeBSD.org> | 1999-06-17 10:00:30 +0000 |
---|---|---|
committer | John-Mark Gurney <jmg@FreeBSD.org> | 1999-06-17 10:00:30 +0000 |
commit | 9aaf2467093688d9797d12dee135dead545c3fa6 (patch) | |
tree | 0aa330f33ac4e9fead756809e7a686dcd6404882 /net/domtools/Makefile | |
parent | Added acroread-commfont (diff) |
import of domtools
'domtools' is a set of DNS information extraction utilities.
The commands in the 'domtools' package allow you to traverse DNS domain
hierarchies, list all hosts (or subdomains) within a given domain,
convert host name to IP address and vice-versa, convert a normal IP address
to the "in-addr.arpa." format and vice-versa, and more. These commands can be
used manually, or included as building blocks for higher level DNS tools.
They generate output that is easily computer parsable.
Notes
Notes:
svn path=/head/; revision=19529
Diffstat (limited to 'net/domtools/Makefile')
-rw-r--r-- | net/domtools/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/domtools/Makefile b/net/domtools/Makefile new file mode 100644 index 000000000000..5a7f14988f2c --- /dev/null +++ b/net/domtools/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: domtools +# Version required: 1.4.0 +# Date created: 12 Jun 1999 +# Whom: alexp +# +# $Id: Makefile,v 1.1.1.1 1999/06/12 04:45:52 jmg Exp $ +# + +DISTNAME= domtools1.4.0 +PKGNAME= domtools-1.4.0 +CATEGORIES= net +MASTER_SITES= http://www.domtools.com/pub/ + +MAINTAINER= veers@disturbed.net + +WRKSRC= ${WRKDIR}/domtools1.4.0/ + +USE_PERL5= YES + +NO_BUILD= YES + +post-install: + ${MKDIR} ${PREFIX}/domtools/lib/zonecache + +.include <bsd.port.mk> |