mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
346d8ef240
This avoids overwriting IP info; meaning you can have multiple instances running
29 lines
569 B
Makefile
29 lines
569 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= namesilo_ddns
|
|
PORTVERSION= 2.2
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= dns net
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Updates DNS records with Namesilo for dynamic IP addresses
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= xmllint:textproc/libxml2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= crees
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/${PORTNAME} "@sample etc/${PORTNAME}.conf.sample"
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh \
|
|
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample \
|
|
${STAGEDIR}${PREFIX}/etc/
|
|
|
|
.include <bsd.port.mk>
|