diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-20 21:19:10 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-20 21:19:10 +0000 |
commit | 9638468cd3663038de914957da2bc6c679b3d28b (patch) | |
tree | 8338f4619004905b030807ad00f04527fca67cb0 /dns/checkdns | |
parent | 6616b94d3d6d3d59f2790d198f19c5e7e32fe0a7 (diff) | |
download | ports-9638468cd3663038de914957da2bc6c679b3d28b.tar.gz ports-9638468cd3663038de914957da2bc6c679b3d28b.zip |
Notes
Diffstat (limited to 'dns/checkdns')
-rw-r--r-- | dns/checkdns/Makefile | 28 | ||||
-rw-r--r-- | dns/checkdns/distinfo | 4 | ||||
-rw-r--r-- | dns/checkdns/files/patch-Makefile | 25 | ||||
-rw-r--r-- | dns/checkdns/files/pkg-message.in | 8 | ||||
-rw-r--r-- | dns/checkdns/pkg-descr | 19 | ||||
-rw-r--r-- | dns/checkdns/pkg-plist | 15 |
6 files changed, 99 insertions, 0 deletions
diff --git a/dns/checkdns/Makefile b/dns/checkdns/Makefile new file mode 100644 index 000000000000..2f098f773e08 --- /dev/null +++ b/dns/checkdns/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: checkdns +# Date created: 9 May 2005 +# Whom: Ozkan KIRIK <ozkan@enderunix.org> +# +# $FreeBSD$ +# + +PORTNAME= checkdns +PORTVERSION= 0.5 +CATEGORIES= dns +MASTER_SITES= http://www.enderunix.org/checkdns/ + +MAINTAINER= ozkan@enderunix.org +COMMENT= A domain name server analysis and reporting tool + +USE_REINPLACE= yes + +SUB_FILES= pkg-message +PKG_MESSAGE= ${WRKDIR}/pkg-message + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' ${WRKSRC}/main.c \ + ${WRKSRC}/INSTALL ${WRKSRC}/README ${WRKSRC}/checkdns.conf-dist + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/dns/checkdns/distinfo b/dns/checkdns/distinfo new file mode 100644 index 000000000000..39c2ced35a27 --- /dev/null +++ b/dns/checkdns/distinfo @@ -0,0 +1,4 @@ +MD5 (checkdns-0.5.tar.gz) = 7420cc7a01217391bb3eb4a2e7da1e96 +SIZE (checkdns-0.5.tar.gz) = 17262 +MD5 (Makefile.patch) = 5c53172699a0e758efee3f9850071236 +SIZE (Makefile.patch) = 616 diff --git a/dns/checkdns/files/patch-Makefile b/dns/checkdns/files/patch-Makefile new file mode 100644 index 000000000000..292bbd778510 --- /dev/null +++ b/dns/checkdns/files/patch-Makefile @@ -0,0 +1,25 @@ +--- Makefile.orig Sat Jan 15 21:40:27 2005 ++++ Makefile Fri May 20 23:12:20 2005 +@@ -9,7 +9,15 @@ + $(CC) -o checkdns $(OBJS) + + install: +- cp checkdns /usr/local/bin/checkdns ++ cp checkdns ${PREFIX}/bin/checkdns ++ chown root ${PREFIX}/bin/checkdns ++ chmod 700 ${PREFIX}/bin/checkdns ++ cp -pf checkdns.conf-dist ${PREFIX}/etc/checkdns.conf ++ mkdir -p ${PREFIX}/share/checkdns/lang ++ cp -f README THANKS TODO AUTHORS COPYING INSTALL ChangeLog uninstall.sh ${PREFIX}/share/checkdns ++ cp -f lang/* ${PREFIX}/share/checkdns/lang ++ ++ + + clean: + rm -f $(OBJS) checkdns +@@ -17,4 +25,4 @@ + uninstall: clean + rm /usr/local/bin/checkdns + +-all: compile install clean ++all: compile diff --git a/dns/checkdns/files/pkg-message.in b/dns/checkdns/files/pkg-message.in new file mode 100644 index 000000000000..e44e163e4f29 --- /dev/null +++ b/dns/checkdns/files/pkg-message.in @@ -0,0 +1,8 @@ + -------------------------------------------------------------------- + | >>> ATTENTION PLEASE <<< | + | | + | Please don't forget these : | + | - editing %%PREFIX%%/etc/checkdns.conf file ! | + | - copying checkdns.css file to Html Output Directory ! | + | | + -------------------------------------------------------------------- diff --git a/dns/checkdns/pkg-descr b/dns/checkdns/pkg-descr new file mode 100644 index 000000000000..7c049999d508 --- /dev/null +++ b/dns/checkdns/pkg-descr @@ -0,0 +1,19 @@ +This program is a domain name server analysis and reporting tool. +It checks and reports whether a domain name, hosted by your organization, +is still in use, and if so, reports whether your name servers are +still the delegated name servers of the domain name in question. + +Reports are generated both to the console and as HTML output. +HTMLs also include information about the MX and WWW records of the domain name. + +The tool is expected to be of great use for Internet Service Providers +who are in need of keeping track of lame dns records. + +Project Page: +WWW: http://www.enderunix.org/checkdns + +Author: + Atilim BOY + aboy@enderunix.org + EnderUNIX SDT @ Turkey +http://www.enderunix.org/ diff --git a/dns/checkdns/pkg-plist b/dns/checkdns/pkg-plist new file mode 100644 index 000000000000..050ea2911956 --- /dev/null +++ b/dns/checkdns/pkg-plist @@ -0,0 +1,15 @@ +bin/checkdns +etc/checkdns.conf +%%DATADIR%%/README +%%DATADIR%%/THANKS +%%DATADIR%%/TODO +%%DATADIR%%/AUTHORS +%%DATADIR%%/COPYING +%%DATADIR%%/INSTALL +%%DATADIR%%/ChangeLog +%%DATADIR%%/uninstall.sh +%%DATADIR%%/lang/english +%%DATADIR%%/lang/spanish +%%DATADIR%%/lang/turkish +@dirrm %%DATADIR%%/lang +@dirrm %%DATADIR%% |