diff options
author | wiz <wiz@pkgsrc.org> | 2005-08-02 09:55:37 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-08-02 09:55:37 +0000 |
commit | 203a51c8851e27c193434cf63fe8f98b86ccd920 (patch) | |
tree | 163939792e0ca180a2888646b2765845a60e87e2 /net/ddclient/Makefile | |
parent | 91dee4e09dfaedb8f744faab0a9c8969de3ab559 (diff) | |
download | pkgsrc-203a51c8851e27c193434cf63fe8f98b86ccd920.tar.gz |
Update to 3.6.6, provided by Geert Hendrickx in PR 30891:
3.6.6
- support for olitec-SX200
- added sample-etc_rc.d_init.d_ddclient.lsb as a sample script for lsb-compliant systems.
- support for linksys wrt854g (thanks to Nick Triantos)
- support for linksys ver 3
- support for Thomson (Alcatel) SpeedTouch 510 (thanks to Aldoir)
- Cosmetic fixes submitted by John Owens
3.6.5
- there was a bug in the linksys-ver2
- support for postscript (thanks to Larry Hendrickson)
- Changelog out of README
- modified all documentation to use /etc/ddclient/ddclient.conf (notified by nicolasmartin in bug [1070646])
3.6.4
- added support for NameCheap service (thanks to Dan Boardman)
- added support for linksys ver2 (thanks to Dan Perik)
3.6.3
- renamed sample-etc_dhclient-enter-hooks to sample-etc_dhclient-exit-hooks
- add support for the Allnet 1298 Router
- add -a to ifconfig to query all interfaces (for Solaris and OpenBSD)
- update the process status to reflect what is happening.
- add a To: line when sending e-mail
- add mail-failure to send mail on failures only
- try all addresses for multihomed hosts (like check.dyndns.org)
- add support for dnspark
- add sample for OrgDNS.org
Diffstat (limited to 'net/ddclient/Makefile')
-rw-r--r-- | net/ddclient/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/net/ddclient/Makefile b/net/ddclient/Makefile index 41f2fd7f3b6..289017392e1 100644 --- a/net/ddclient/Makefile +++ b/net/ddclient/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.21 2005/07/16 19:10:39 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2005/08/02 09:55:37 wiz Exp $ -DISTNAME= ddclient-3.6.2 -PKGREVISION= 1 +DISTNAME= ddclient-3.6.6 CATEGORIES= net -MASTER_SITES= ${HOMEPAGE} +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ddclient/} +EXTRACT_SUFX= .tar.bz2 MAINTAINER= tech-pkg@NetBSD.org -HOMEPAGE= http://burry.ca:4141/ddclient/ +HOMEPAGE= http://ddclient.sourceforge.net/ COMMENT= Client to update dynamic DNS entries PKG_INSTALLATION_TYPES= overwrite pkgviews @@ -26,14 +26,14 @@ CONF_FILES_PERMS= ${EGDIR}/sample-etc_ddclient.conf \ INSTALLATION_DIRS= sbin do-configure: - cd ${WRKSRC}; for file in ddclient; do \ + cd ${WRKSRC}; for f in ddclient; do \ ${SED} -e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g" \ -e "s|@PERL5@|${PERL5}|g" \ - $${file} > $${file}.fixed; \ - if [ -x $${file} ]; then \ - ${CHMOD} +x $${file}.fixed; \ + $${f} > $${f}.fixed; \ + if [ -x $${f} ]; then \ + ${CHMOD} +x $${f}.fixed; \ fi; \ - ${MV} -f $${file}.fixed $${file}; \ + ${MV} -f $${f}.fixed $${f}; \ done do-build: # empty |