summaryrefslogtreecommitdiff
path: root/net/ddclient
AgeCommit message (Collapse)AuthorFilesLines
2006-03-14Modify the pkginstall framework so that it manages all aspects ofjlam1-2/+1
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-08-02Update to 3.6.6, provided by Geert Hendrickx in PR 30891:wiz4-19/+20
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
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam1-2/+2
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+2
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2005-02-21Sign over maintainership to tech-pkg@hubertf1-2/+2
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-1/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-07-24don't call "install -d" with >1 argument.grant1-2/+3
2004-04-23mk/bsd.pkg.install.mk now automatically registersreed1-2/+1
the RCD_SCRIPTS rc.d script(s) to the PLIST. This GENERATE_PLIST idea is part of Greg A. Woods' PR #22954. This helps when the RC_SCRIPTS are installed to a different ${RCD_SCRIPTS_EXAMPLEDIR}. (Later, the default RCD_SCRIPTS_EXAMPLEDIR will be changed to be more clear that they are the examples.) These patches also remove the etc/rc.d/ scripts from PLISTs (of packages that use RCD_SCRIPTS). (This also removes now unused references from openssh* makefiles. Note that qmail package has not been changed yet.) I have been doing automatic PLIST registration for RC_SCRIPTS for over a year. Not all of these packages have been tested, but many have been tested and used. Somethings maybe to do: - a few packages still manually install the rc.d scripts to hard-coded etc/rc.d. These need to be fixed. - maybe remove from mk/${OPSYS}.pkg.dist mtree specifications too.
2004-03-31This is a Perl script... no need for compiler here.jlam1-3/+4
2004-01-16PERL5_PATH not necessary here since ddclient starts itself using ${PERL5}.jlam2-4/+3
2004-01-16bl3ifyjlam2-9/+12
2003-08-30Add definitions for DEINSTALL_EXTRA_TMPL and INSTALL_EXTRA_TMPL ifjlam1-1/+2
USE_PKGINSTALL is "YES". bsd.pkg.install.mk will no longer automatically pick up a INSTALL/DEINSTALL script in the package directory and assume that you want it for the corresponding *_EXTRA_TMPL variable.
2003-08-30Prepare for pkgviews by making sure that passing VIEW-INSTALL orjlam1-5/+1
VIEW-DEINSTALL to the INSTALL/DEINSTALL scripts don't cause errors.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-3/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-09-20Make these scripts more portable by taking advantage of automatic rc.dgrant1-2/+2
script handling and using @RCD_SCRIPTS_SHELL@. as discussed with jlam.
2002-09-19Take advantage of the auto-generation and installation of rc.d scripts.jlam1-11/+1
2002-09-18When using bsd.pkg.install.mk, if a DEINSTALL or INSTALL file alreadyjlam1-2/+1
exists, then use it as the default value of DEINSTALL_EXTRA_TMPL or INSTALL_EXTRA_TMPL.
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-3/+4
have been converted to USE_BUILDLINK2.
2002-03-25Update ddclient to 3.6.2. Changes:hubertf2-5/+5
- add support for Xsense Aero - add support for Alcatel Speedtouch Pro - do authentication when either the login or password are defined. - fix parsing of web status pages Updated contributed by Amitai Schlair <schmonz@schmonz.com> in private mail.
2002-02-05Solaris' test binary (test/[) doesn't grok "-e". Replace with "-f".jlam1-3/+3
Noted by Stoned Elipot <seb@netbsd.org> in private email.
2001-12-09"${command}" must be "perl" or else the rc.subr routines can't figure outjlam1-4/+12
the pid of the daemon process. Rework this rc.d script as a model for other perl-script daemons to use.
2001-12-09Update net/ddclient to 3.6. Pkgsrc changes include:jlam7-77/+114
- buildlink'ify - use general INSTALL scripts as ddclient now requires a config file and can use a rc.d script to operate in daemon mode Changes from version 2.3.2 include: - bug fixes - new ddclient.conf format - rewritten to support DynDNS's NIC2 and other dynamic DNS services: - added EasyDNS (easydns.com) - added Hammernode (hn.org) - added ZoneEdit (zoneedit.com) - added DSLreports (dslreports.com) host monitoring - added support for obtaining IP addresses from : - interfaces, commands, web, external commands, routers - added daemon mode - added logging msgs to syslog and e-mail - add detection of SIGHUP. When this signal is received, ddclient will wake up immediately, reload it's configuration file, and update the IP addresses if necessary.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-2/+2
2001-04-21Move to sha1 checksum, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-29Update to 2.3.2 (2.3.1 distfile was pointing to new version)wiz2-13/+14
Changes: make verbose flags more useful, fix some proxy problems.
2001-01-29Add automatic ${VARIABLE} handling for MESSAGE files.wiz2-8/+6
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced, not @VARIABLE@, nor @@VARIABLE@@). By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX, X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST. Clean up some packages while I'm there; add RCS tags to most MESSAGEs. Remove some uninteresting MESSAGEs.
2000-09-03Don't hardwire /usr/pkg in MESSAGE.wiz2-3/+8
2000-08-07ddclient is a Perl client used to update dynamic DNS entries for accountshubertf8-0/+105
on Dynamic DNS Network Services' free DNS service. See http://www.dyndns.org for details on obtaining a free account. Comments can always be sent to: mailto:paul+ddclient@burry.dyndns.org If you use ddclient, please send a brief note to: mailto:paul+ddclient@burry.dyndns.org and indicate if you would like to be notified of new releases.