summaryrefslogtreecommitdiff
path: root/www/jdresolve
diff options
context:
space:
mode:
Diffstat (limited to 'www/jdresolve')
-rw-r--r--www/jdresolve/Makefile42
-rw-r--r--www/jdresolve/distinfo4
-rw-r--r--www/jdresolve/files/patch-jdresolve11
-rw-r--r--www/jdresolve/pkg-descr16
-rw-r--r--www/jdresolve/pkg-plist12
5 files changed, 0 insertions, 85 deletions
diff --git a/www/jdresolve/Makefile b/www/jdresolve/Makefile
deleted file mode 100644
index 475c274ec1ef..000000000000
--- a/www/jdresolve/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# Created by: Christophe Labouisse <christophe@labouisse.org>
-# $FreeBSD$
-
-PORTNAME= jdresolve
-PORTVERSION= 0.6.1
-PORTREVISION= 2
-CATEGORIES= www
-MASTER_SITES= http://www.jdrowell.com/projects/jdresolve/
-PATCH_SITES= ${MASTER_SITES}
-PATCHFILES= patch-0.6.2b1.diff
-
-MAINTAINER= christophe@labouisse.org
-COMMENT= IP addresse to hostname program for httpd log files
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS
-RUN_DEPENDS:= ${BUILD_DEPENDS}
-
-USES= perl5 shebangfix
-NO_BUILD= yes
-SHEBANG_FILES= jdresolve
-
-DOC1= AUTHORS BUGS CHANGELOG COPYING CREDITS INSTALL README TODO
-
-OPTIONS_DEFINE= DOCS
-
-do-install:
-.for file in jdresolve rhost
- ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/${file}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
-.endfor
-
-post-install-DOCS-on:
- ${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/jdresolve
-.for i in ${DOC1}
- ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/share/doc/jdresolve
-.endfor
-
-.include <bsd.port.mk>
diff --git a/www/jdresolve/distinfo b/www/jdresolve/distinfo
deleted file mode 100644
index c78abb4c06c9..000000000000
--- a/www/jdresolve/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-SHA256 (jdresolve-0.6.1.tar.gz) = f28a12d850442fee62db173e7fb2355f380f085012ba888beedc60fdccd00eca
-SIZE (jdresolve-0.6.1.tar.gz) = 51200
-SHA256 (patch-0.6.2b1.diff) = 923653924bb72099e3542a333a3c8c57175b7dfe8bd5482ee4c692b8293220b3
-SIZE (patch-0.6.2b1.diff) = 1222
diff --git a/www/jdresolve/files/patch-jdresolve b/www/jdresolve/files/patch-jdresolve
deleted file mode 100644
index 1f9fb96d3763..000000000000
--- a/www/jdresolve/files/patch-jdresolve
+++ /dev/null
@@ -1,11 +0,0 @@
---- jdresolve.orig 2014-09-04 21:09:39 UTC
-+++ jdresolve
-@@ -857,7 +857,7 @@
- # For each DNS answer, check the data received
- if ($type eq 'H') {
- if (defined $_->{ptrdname}) {
-- $hosts{$query}{NAME} = $_->{ptrdname};
-+ $hosts{$query}{NAME} = join(".",@{$_->{ptrdname}->{label}});
- $hosts{$query}{RESOLVED} = 'N';
-
- $resolved = 1;
diff --git a/www/jdresolve/pkg-descr b/www/jdresolve/pkg-descr
deleted file mode 100644
index f8a10218da61..000000000000
--- a/www/jdresolve/pkg-descr
+++ /dev/null
@@ -1,16 +0,0 @@
-jdresolve resolves IP addresses to hostnames. Any file format is
-supported, including those where the line does not begin with the IP
-address. One of the strongest features of the program is the support
-for recursion, which can drastically reduce the number of unresolved
-hosts by faking a hostname based on the network that the IP belongs
-to. DNS queries are sent in parallel, which means that you can
-decrease run time by increasing the number of simultaneous sockets
-used (given a fast enough machine and available bandwidth). By using
-the database support, performance can be increased even further, by
-using cached data from previous runs.
-
-Included is a tiny shell script called rhost to interface with
-jdresolve when resolving a single IP address. Think of it as a smart
-replacement for the 'host' utility that comes with bind-utils.
-
-WWW: https://github.com/jdrowell/jdresolve
diff --git a/www/jdresolve/pkg-plist b/www/jdresolve/pkg-plist
deleted file mode 100644
index 707e0df716b9..000000000000
--- a/www/jdresolve/pkg-plist
+++ /dev/null
@@ -1,12 +0,0 @@
-bin/jdresolve
-bin/rhost
-man/man1/jdresolve.1.gz
-man/man1/rhost.1.gz
-%%PORTDOCS%%share/doc/jdresolve/AUTHORS
-%%PORTDOCS%%share/doc/jdresolve/BUGS
-%%PORTDOCS%%share/doc/jdresolve/CHANGELOG
-%%PORTDOCS%%share/doc/jdresolve/COPYING
-%%PORTDOCS%%share/doc/jdresolve/CREDITS
-%%PORTDOCS%%share/doc/jdresolve/INSTALL
-%%PORTDOCS%%share/doc/jdresolve/README
-%%PORTDOCS%%share/doc/jdresolve/TODO