summaryrefslogtreecommitdiff
path: root/dns/dnsproxy/Makefile
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-01-14 12:47:13 +0000
committerClement Laforet <clement@FreeBSD.org>2004-01-14 12:47:13 +0000
commit04afb694e2f37858168aa4f3e7a8cf2a41b5a48f (patch)
treecc46519d87c1e108bff5c4984db44ad515634637 /dns/dnsproxy/Makefile
parentUpdate to 3.95.1. (diff)
Add dnsproxy-1.13, a proxy for DNS queries.
The dnsproxy daemon is a proxy for DNS queries. It forwards these queries to two previously configured nameservers: one for authoritative queries and another for recursive queries. The received answers are sent back to the client unchanged. No local caching is done. Approved by: erwin (mentor) (implicitly)
Notes
Notes: svn path=/head/; revision=98150
Diffstat (limited to 'dns/dnsproxy/Makefile')
-rw-r--r--dns/dnsproxy/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/dns/dnsproxy/Makefile b/dns/dnsproxy/Makefile
new file mode 100644
index 000000000000..2ab482e18f70
--- /dev/null
+++ b/dns/dnsproxy/Makefile
@@ -0,0 +1,24 @@
+# New ports collection makefile for: dnsproxy
+# Date created: 14 January 2004
+# Whom: Clement Laforet <clement@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= dnsproxy
+PORTVERSION= 1.13
+CATEGORIES= dns
+MASTER_SITES= http://www.wolfermann.org/
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= A proxy for DNS queries
+
+GNU_CONFIGURE= YES
+
+MAN1= dnsproxy.1
+
+do-install:
+ @${INSTALL_PROGRAM} ${WRKSRC}/dnsproxy ${PREFIX}/sbin
+ @${INSTALL_MAN} ${WRKSRC}/dnsproxy.1 ${MAN1PREFIX}/man/man1
+
+.include <bsd.port.mk>