mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
36 lines
898 B
Makefile
36 lines
898 B
Makefile
# Created by: Dan Smith <dan@algenta.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dnsmax-perl
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= SF/dynamicdns/${PORTNAME}/${PORTVERSION}
|
|
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= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \
|
|
p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
USES= perl5
|
|
|
|
PLIST_FILES= bin/dnsmax-perl
|
|
PORTDOCS= LICENSE INSTALL README
|
|
|
|
NO_STAGE= yes
|
|
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>
|