diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-01-12 09:46:03 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-01-12 09:46:03 +0000 |
commit | 59d22a70ee0322a54effb063481e0b372cd19fd3 (patch) | |
tree | ed3e16e48952c9444a6a9d1b67eb8f3cf5955cb9 /dns/drill/Makefile | |
parent | Update to 1.47 (diff) |
New port: A dnssec aware dns debugging tool
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.
PR: ports/75882
Submitted by: Jaap Akkerhuis <jaap@NLnetLabs.nl>
Notes
Notes:
svn path=/head/; revision=126213
Diffstat (limited to 'dns/drill/Makefile')
-rw-r--r-- | dns/drill/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dns/drill/Makefile b/dns/drill/Makefile new file mode 100644 index 000000000000..234a3a6b8f2c --- /dev/null +++ b/dns/drill/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: drill +# Date created: 30 December 2004 +# Whom: Jaap Akkerhuis <jaap@NLnetLabs.nl +# +# $FreeBSD$ +# + +PORTNAME= drill +PORTVERSION= 0.9.1 +CATEGORIES= dns +MASTER_SITES= http://www.nlnetlabs.nl/downloads/drill/ + +MAINTAINER= jaap@NLnetLabs.nl +COMMENT= A dig style dnssec aware dns debugging tool + +MAN1= drill.1 +MANCOMPRESSED= no + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_BZIP2= yes +USE_OPENSSL= yes +HAS_CONFIGURE= yes +LDFLAGS+= -L${OPENSSLLIB} +CFLAGS+= -I${OPENSSLINC} +CONFIGURE_ARGS= --prefix=${PREFIX} + +.include <bsd.port.mk> |