aboutsummaryrefslogtreecommitdiff
path: root/dns/ddclient
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-06-01 23:49:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-06-01 23:49:18 +0000
commit6a294c20389911c409eb5f6f05033eaf6c6975ab (patch)
treeb621d2670693545124e161f6048aa76ec80ae631 /dns/ddclient
parentef70e9816ef935802e3a1e27b44f1c499b5cb27b (diff)
downloadports-6a294c20389911c409eb5f6f05033eaf6c6975ab.tar.gz
ports-6a294c20389911c409eb5f6f05033eaf6c6975ab.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_1_0'.release/5.1.0
Notes
Notes: svn path=/head/; revision=81947 svn path=/tags/RELEASE_5_1_0/; revision=81948; tag=release/5.1.0
Diffstat (limited to 'dns/ddclient')
-rw-r--r--dns/ddclient/Makefile34
-rw-r--r--dns/ddclient/distinfo1
-rw-r--r--dns/ddclient/files/ddclient.sh.sample19
-rw-r--r--dns/ddclient/files/patch-aa29
-rw-r--r--dns/ddclient/pkg-descr4
-rw-r--r--dns/ddclient/pkg-message19
-rw-r--r--dns/ddclient/pkg-plist12
7 files changed, 0 insertions, 118 deletions
diff --git a/dns/ddclient/Makefile b/dns/ddclient/Makefile
deleted file mode 100644
index bac69ef95120..000000000000
--- a/dns/ddclient/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# New ports collection makefile for: ddclient
-# Date created: Sun Aug 26 14:45:12 CEST 2001
-# Whom: Dirk Froemberg <dirk@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= ddclient
-PORTVERSION= 3.6.2
-CATEGORIES= net
-MASTER_SITES= http://burry.ca:4141/ddclient/
-
-MAINTAINER= dirk@FreeBSD.org
-COMMENT= Update dynamic DNS entries
-
-USE_PERL5= yes
-NO_BUILD= yes
-
-do-install:
- @/usr/bin/perl -pi -e 's|%%PREFIX%%|${PREFIX}|g; s|%%PERL%%|${PERL}|g' ${WRKSRC}/ddclient
- @${INSTALL_SCRIPT} ${WRKSRC}/ddclient ${PREFIX}/sbin
- @${INSTALL_DATA} ${WRKSRC}/sample-etc_ddclient.conf ${PREFIX}/etc/ddclient.conf.sample
- @${MKDIR} ${PREFIX}/share/ddclient
-.for i in COPYING COPYRIGHT README README.cisco sample-etc_cron.d_ddclient \
- sample-etc_dhclient-enter-hooks sample-etc_dhcpc_dhcpcd-eth0.exe \
- sample-etc_ppp_ip-up.local
- @${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/ddclient
-.endfor
- @/usr/bin/perl -pe 's|%%PREFIX%%|${PREFIX}|g' < ${FILESDIR}/ddclient.sh.sample > ${WRKDIR}/ddclient.sh.sample
- @${INSTALL_SCRIPT} ${WRKDIR}/ddclient.sh.sample ${PREFIX}/etc/rc.d
-
- @/usr/bin/perl -pe 's|/usr/local|${PREFIX}|g' < ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/dns/ddclient/distinfo b/dns/ddclient/distinfo
deleted file mode 100644
index 8d47716e57f6..000000000000
--- a/dns/ddclient/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (ddclient-3.6.2.tar.gz) = 40741dbf315889b1bd1b08e36ca665c0
diff --git a/dns/ddclient/files/ddclient.sh.sample b/dns/ddclient/files/ddclient.sh.sample
deleted file mode 100644
index 76b25b345f07..000000000000
--- a/dns/ddclient/files/ddclient.sh.sample
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- if [ -x %%PREFIX%%/sbin/ddclient ]; then
- %%PREFIX%%/sbin/ddclient -daemon 300 && echo -n ' ddclient'
- fi
- ;;
- stop)
- /usr/bin/killall ddclient
- echo -n ' ddclient'
- ;;
- *)
- echo ""
- echo "Usage: `basename $0` { start | stop }"
- echo ""
- exit 64
- ;;
-esac
diff --git a/dns/ddclient/files/patch-aa b/dns/ddclient/files/patch-aa
deleted file mode 100644
index b056bf8db657..000000000000
--- a/dns/ddclient/files/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
---- ddclient.orig Sat Aug 25 17:17:28 2001
-+++ ddclient Sun Aug 26 19:52:01 2001
-@@ -1,5 +1,4 @@
--#!/usr/bin/perl -w
--#!/usr/local/bin/perl -w
-+#!%%PERL%% -w
- ######################################################################
- # $Header: /home/paul/src/ddclient/RCS/ddclient,v 3.5 2001/08/25 14:22:00 root Exp $
- #
-@@ -20,8 +19,8 @@
- $program =~ s/d$//;
- my $now = time;
- my $hostname = hostname();
--my $etc = ($program =~ /test/i) ? './' : '/etc/';
--my $savedir = ($program =~ /test/i) ? 'URL/' : '/tmp/';
-+my $etc = '%%PREFIX%%/etc/';
-+my $savedir = (exists($ENV{TMPDIR}) ? "$ENV{TMPDIR}/" : "/var/tmp/");
- my $msgs = '';
- my $last_msgs = '';
-
-@@ -29,7 +28,7 @@
- local $file = '';
- local $lineno = '';
-
--$ENV{'PATH'} = (exists($ENV{PATH}) ? "$ENV{PATH}:" : "") . "/sbin:/usr/sbin:/bin:/usr/bin:/etc:/usr/lib:";
-+$ENV{'PATH'} = (exists($ENV{PATH}) ? "$ENV{PATH}:" : "") . "/sbin:/usr/sbin:/bin:/usr/bin";
-
- sub T_ANY {'any'};
- sub T_STRING {'string'};
diff --git a/dns/ddclient/pkg-descr b/dns/ddclient/pkg-descr
deleted file mode 100644
index 584b41cf5069..000000000000
--- a/dns/ddclient/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-ddclient is a Perl client used to update dynamic DNS entries for
-accounts on many dynamic DNS services.
-
-WWW: http://burry.ca:4141/ddclient/
diff --git a/dns/ddclient/pkg-message b/dns/ddclient/pkg-message
deleted file mode 100644
index a024f33a9649..000000000000
--- a/dns/ddclient/pkg-message
+++ /dev/null
@@ -1,19 +0,0 @@
-
-***********************************************************
-Copy
-
- /usr/local/etc/ddclient.conf.sample
-to
- /usr/local/etc/ddclient.conf
-
-and edit it to fit your needs.
-
-If you would like to run ddclient as a daemon consider
-copying
-
- /usr/local/etc/rc.d/ddclient.sh.sample
-to
- /usr/local/etc/rc.d/ddclient.sh
-
-***********************************************************
-
diff --git a/dns/ddclient/pkg-plist b/dns/ddclient/pkg-plist
deleted file mode 100644
index b72aa7765220..000000000000
--- a/dns/ddclient/pkg-plist
+++ /dev/null
@@ -1,12 +0,0 @@
-etc/ddclient.conf.sample
-etc/rc.d/ddclient.sh.sample
-sbin/ddclient
-share/ddclient/COPYING
-share/ddclient/COPYRIGHT
-share/ddclient/README
-share/ddclient/README.cisco
-share/ddclient/sample-etc_cron.d_ddclient
-share/ddclient/sample-etc_dhclient-enter-hooks
-share/ddclient/sample-etc_dhcpc_dhcpcd-eth0.exe
-share/ddclient/sample-etc_ppp_ip-up.local
-@dirrm share/ddclient