diff options
author | tv <tv@pkgsrc.org> | 2001-08-28 13:10:46 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2001-08-28 13:10:46 +0000 |
commit | b9384661537d8509e50d1e7a3b6264d9e2239b38 (patch) | |
tree | 454db8c372226341e75d2dce7739c2835108ab2e /net/dynipclient/Makefile | |
parent | f0a2d8ef153c7d0d65622a56b51fe99bd40b7ecc (diff) | |
download | pkgsrc-b9384661537d8509e50d1e7a3b6264d9e2239b38.tar.gz |
Add dynipclient, a client program for the dynip.com commercial dynamic-DNS
service. (Unlike many dynamic-DNS services, this one detects an offline
condition and can change the IP address to a user-specified offline IP.)
Diffstat (limited to 'net/dynipclient/Makefile')
-rw-r--r-- | net/dynipclient/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/dynipclient/Makefile b/net/dynipclient/Makefile new file mode 100644 index 00000000000..9d9dea46146 --- /dev/null +++ b/net/dynipclient/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/08/28 13:10:46 tv Exp $ +# + +DISTNAME= dynip_3.00 +PKGNAME= dynipclient-3.00 +CATEGORIES= net +MASTER_SITES= ftp://ftp.dynip.com/software/unix/ + +MAINTAINER= tv@netbsd.org +HOMEPAGE= http://www.dynip.com/ +COMMENT= Client for the dynip.com dynamic DNS service + +WRKSRC= ${WRKDIR} + +do-build: + cd ${WRKSRC} && ./Configure freebsd ${PREFIX}/bin /etc ${PREFIX}/man + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dynipadmin ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/dynipclient ${PREFIX}/bin/ + ${INSTALL_DATA} ${WRKSRC}/*.1 ${PREFIX}/man/man1/ + +.include "../../mk/bsd.pkg.mk" |