diff options
author | pav <pav@FreeBSD.org> | 2005-01-30 03:17:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-01-30 03:17:03 +0800 |
commit | fb3acb159f3b84be8dcadf5de114758c368ba755 (patch) | |
tree | 7dcdacec540238bbf57035ee6e914295c611ba30 /dns/dnsmax-perl/Makefile | |
parent | 0cb5ee375f12fd535ecd6eb82f7c8f29b45724bf (diff) | |
download | freebsd-ports-gnome-fb3acb159f3b84be8dcadf5de114758c368ba755.tar.gz freebsd-ports-gnome-fb3acb159f3b84be8dcadf5de114758c368ba755.tar.zst freebsd-ports-gnome-fb3acb159f3b84be8dcadf5de114758c368ba755.zip |
DNSMax's perl update client. It manages DNS records, update history, and
allows for per record configuration. It also includes a wizard for generation
of configuration files.
PR: ports/76614
Submitted by: Dan Smith <dan@algenta.com>
Diffstat (limited to 'dns/dnsmax-perl/Makefile')
-rw-r--r-- | dns/dnsmax-perl/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dns/dnsmax-perl/Makefile b/dns/dnsmax-perl/Makefile new file mode 100644 index 000000000000..eb69465c477a --- /dev/null +++ b/dns/dnsmax-perl/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: dnsmax-perl +# Date created: Sun Jan 23 20:27:00 CST 2005 +# Whom: Dan Smith <dan@algenta.com> +# +# $FreeBSD$ +# + +PORTNAME= dnsmax-perl +PORTVERSION= 1.0.1 +CATEGORIES= dns +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= dynamicdns +DISTNAME= ${PORTNAME:L}-${PORTVERSION:S/.p/-pre/:S/.b/-beta/} + +MAINTAINER= dan@algenta.com +COMMENT= DNSMax-perl is a perl DNS update client for the REST DNSMax protocol + +BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ + ${SITE_PERL}/${PERL_ARCH}/Crypt/SSLeay.pm:${PORTSDIR}/security/p5-Crypt-SSLeay \ + ${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \ + ${SITE_PERL}/HTTP/Response.pm:${PORTSDIR}/www/p5-libwww + +USE_ZIP= yes +NO_BUILD= yes +USE_PERL5= yes + +PLIST_FILES= bin/dnsmax-perl +PORTDOCS= LICENSE INSTALL README + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/dnsmax.pl ${PREFIX}/bin/dnsmax-perl +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + cd ${WRKDIR}/${DISTNAME} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |