diff options
author | danfe <danfe@FreeBSD.org> | 2015-08-06 16:14:33 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2015-08-06 16:14:33 +0800 |
commit | f8138dee4cb27a7596f364d9d1fcfecc047f6533 (patch) | |
tree | d80d13b5b92c1f397c19b30c2354200090eaf703 /dns | |
parent | aaab3f4db06a3e762d65afec5d3cab99845dbe5c (diff) | |
download | freebsd-ports-gnome-f8138dee4cb27a7596f364d9d1fcfecc047f6533.tar.gz freebsd-ports-gnome-f8138dee4cb27a7596f364d9d1fcfecc047f6533.tar.zst freebsd-ports-gnome-f8138dee4cb27a7596f364d9d1fcfecc047f6533.zip |
Add a port of renewck, utility that checks expiration times of one or more
domains and notifies user via email about the domains that are approaching
expiring.
WWW: http://www.gnu.org.ua/software/dnstools/renewck.html
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/renewck/Makefile | 24 | ||||
-rw-r--r-- | dns/renewck/distinfo | 2 | ||||
-rw-r--r-- | dns/renewck/pkg-descr | 7 |
4 files changed, 34 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index f0de930b1d9f..d069a649a77c 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -170,6 +170,7 @@ SUBDIR += rbldnsd SUBDIR += rbllookup SUBDIR += rbllookup-ng + SUBDIR += renewck SUBDIR += rubygem-dnsruby SUBDIR += rubygem-net-dns SUBDIR += rubygem-public_suffix diff --git a/dns/renewck/Makefile b/dns/renewck/Makefile new file mode 100644 index 000000000000..75d5e7854c6a --- /dev/null +++ b/dns/renewck/Makefile @@ -0,0 +1,24 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= renewck +PORTVERSION= 1.00 +CATEGORIES= dns perl5 +MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \ + http://freebsd.nsu.ru/distfiles/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Check for expiring domains and send email notifications + +LICENSE= GPLv3 + +RUN_DEPENDS= p5-Time-modules>0:${PORTSDIR}/devel/p5-Time-modules \ + p5-Mail-Tools>0:${PORTSDIR}/mail/p5-Mail-Tools \ + p5-GDBM>0:${PORTSDIR}/databases/p5-GDBM + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= bin/renewck man/man1/renewck.1.gz + +.include <bsd.port.mk> diff --git a/dns/renewck/distinfo b/dns/renewck/distinfo new file mode 100644 index 000000000000..c8730cabc724 --- /dev/null +++ b/dns/renewck/distinfo @@ -0,0 +1,2 @@ +SHA256 (renewck-1.00.tar.gz) = fabe933aae381839c32115b54b203e0b6a2bd200d3a63d2f75d135e4921c59b4 +SIZE (renewck-1.00.tar.gz) = 7486 diff --git a/dns/renewck/pkg-descr b/dns/renewck/pkg-descr new file mode 100644 index 000000000000..8a3d5952b43f --- /dev/null +++ b/dns/renewck/pkg-descr @@ -0,0 +1,7 @@ +renewck checks expiration times of one or more domains and notifies user +via email about the domains that are approaching expiring. + +It is part of dnstools, a set of utilities for DNS management and related +tasks. + +WWW: http://www.gnu.org.ua/software/dnstools/renewck.html |