1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/dns/ddns/Makefile
Frederic Culot ed8be0acde ddns is a lightweight UDP-based dynamic DNS updater.
It consists of a client that regularly sends UDP packets and a
server that updates a bind zone file or runs a command using the
peer IPv4 address of recieved UDP packets.

WWW: http://fossil.instinctive.eu/ddns/home

PR:		ports/179316
Submitted by:	Natacha Porte <natbsd@instinctive.eu>
2013-07-01 12:53:39 +00:00

33 lines
785 B
Makefile

# Created by: Natacha Porte <natbsd@instinctive.eu>
# $FreeBSD$
PORTNAME= ddns
PORTVERSION= 1.0
CATEGORIES= dns
MASTER_SITES= http://instinctive.eu/code/
MAINTAINER= natbsd@instinctive.eu
COMMENT= Lightweight UDP-based dynamic DNS updater
LICENSE= BSD
MAKEFILE= BSDmakefile
USE_BZIP2= yes
USE_RC_SUBR= ddns_client ddns_server
SUB_FILES= pkg-message
PLIST_FILES= sbin/ddns-server sbin/ddns-client \
etc/ddns_client.conf.sample etc/ddns_server.conf.sample
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ddns-client ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/ddns-server ${PREFIX}/sbin
${INSTALL_DATA} ${FILESDIR}/ddns_client.conf.sample ${PREFIX}/etc
${INSTALL_DATA} ${FILESDIR}/ddns_server.conf.sample ${PREFIX}/etc
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>