summaryrefslogtreecommitdiff
path: root/net/upclient
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2001-10-04 11:05:00 +0000
committerabs <abs@pkgsrc.org>2001-10-04 11:05:00 +0000
commitd9aeaae03b4c5366fbc2be7117c4d85246a4c38c (patch)
treee8d5132d23d32e4c1e0c7253bdefad68442be0ad /net/upclient
parent7547085046965b15f126e26003839c0336beb639 (diff)
downloadpkgsrc-d9aeaae03b4c5366fbc2be7117c4d85246a4c38c.tar.gz
Deleted net/upclient - the uptimes project has been suspended, and if it
resumes it will use a new client and protocol.
Diffstat (limited to 'net/upclient')
-rw-r--r--net/upclient/Makefile40
-rw-r--r--net/upclient/distinfo7
-rw-r--r--net/upclient/files/upclient.sh8
-rw-r--r--net/upclient/patches/patch-aa18
-rw-r--r--net/upclient/patches/patch-ab13
-rw-r--r--net/upclient/patches/patch-ac12
-rw-r--r--net/upclient/pkg/DESCR6
-rw-r--r--net/upclient/pkg/MESSAGE10
-rw-r--r--net/upclient/pkg/PLIST9
9 files changed, 0 insertions, 123 deletions
diff --git a/net/upclient/Makefile b/net/upclient/Makefile
deleted file mode 100644
index a5be1f0eb42..00000000000
--- a/net/upclient/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# $NetBSD: Makefile,v 1.9 2001/06/20 14:30:47 nra Exp $
-#
-
-DISTNAME= upclient-4.2.1.23
-CATEGORIES= net
-MASTER_SITES= http://uptimes.atomicvoid.net/files/ \
- http://www.uptimes.net/download/ \
- ftp://ftp.uptimes.net/pub/uptimes/
-
-MAINTAINER= hubertf@netbsd.org
-HOMEPAGE= http://www.uptimes.net/
-COMMENT= Keeps track of your server uptime, and compares it to other hosts
-
-ALL_TARGET= bsd
-
-post-patch:
- ${MV} ${WRKSRC}/scripts/upchk ${WRKSRC}/scripts/upchk.bak
- ${SED} \
- -e 's|@PREFIX@|${PREFIX}|g' \
- >${WRKSRC}/scripts/upchk <${WRKSRC}/scripts/upchk.bak
-
-do-build:
- cd ${WRKSRC}/src && ${MAKE} ${ALL_TARGET}
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/src/upclient ${PREFIX}/bin
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/upclient
- ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${PREFIX}/share/doc/upclient
- ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/upclient
- ${INSTALL_DATA} ${WRKSRC}/HISTORY ${PREFIX}/share/doc/upclient
- ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/upclient
- ${INSTALL_DATA} ${WRKSRC}/conf/upclient.conf ${PREFIX}/etc
- ${SED} \
- -e 's|@PREFIX@|${PREFIX}|g' \
- -e 's|@INSTALL@|${INSTALL}|g' \
- -e 's|@SU@|${SU}|g' \
- ${FILESDIR}/upclient.sh >${PREFIX}/etc/rc.d/upclient
- ${CHMOD} +x ${PREFIX}/etc/rc.d/upclient
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/net/upclient/distinfo b/net/upclient/distinfo
deleted file mode 100644
index 1e27255cd9a..00000000000
--- a/net/upclient/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.4 2001/06/28 10:32:45 wiz Exp $
-
-SHA1 (upclient-4.2.1.23.tar.gz) = c6595959c6a5058b03ab7096a6bf9c0dbfa4285a
-Size (upclient-4.2.1.23.tar.gz) = 29386 bytes
-SHA1 (patch-aa) = 4492c6741adc516171ecba4d272f5ab46ec28ebe
-SHA1 (patch-ab) = dd1e318cee6e27fcf433b2123cf8f3f6ed8eb548
-SHA1 (patch-ac) = 3641ee544199aa0b63ddfb090b64cbab60e9bb8c
diff --git a/net/upclient/files/upclient.sh b/net/upclient/files/upclient.sh
deleted file mode 100644
index 3c343915921..00000000000
--- a/net/upclient/files/upclient.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-if [ -x @PREFIX@/bin/upclient ]
-then
- @INSTALL@ -o nobody -m 644 /dev/null /var/run/upclient.pid
- @SU@ -m nobody -c @PREFIX@/bin/upclient >/dev/null
- echo -n ' upclient'
-fi
diff --git a/net/upclient/patches/patch-aa b/net/upclient/patches/patch-aa
deleted file mode 100644
index f662105be72..00000000000
--- a/net/upclient/patches/patch-aa
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2001/06/28 10:32:46 wiz Exp $
-
---- src/options.c Sat Jun 16 14:15:04 2001
-+++ src/options.c Tue Jun 19 10:48:25 2001
-@@ -298,8 +298,11 @@
- if(!(fp = fopen("/etc/"CONFIGFILE, "r"))) {
- /* Failed, now try to open config file in /usr/local/etc */
- if(!(fp = fopen("/usr/local/etc/"CONFIGFILE, "r"))) {
-- printf("Error: couldn't open config file %s for reading in:\n- current directory\n- /etc\n- /usr/local/etc\n", CONFIGFILE);
-- exit(-1);
-+ /* Failed, now try to open config file in /usr/pkg/etc */
-+ if (!(fp = fopen("/usr/pkg/etc/"CONFIGFILE, "r"))) {
-+ printf("Error: couldn't open config file %s for reading in:\n- current directory\n- /etc\n- /usr/local/etc\n- /usr/pkg/etc\n", CONFIGFILE);
-+ exit(-1);
-+ }
- }
- }
- }
diff --git a/net/upclient/patches/patch-ab b/net/upclient/patches/patch-ab
deleted file mode 100644
index 9386b5bb39b..00000000000
--- a/net/upclient/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2001/06/20 14:30:48 nra Exp $
-
---- scripts/upchk.orig Tue Jun 19 11:15:24 2001
-+++ scripts/upchk Tue Jun 19 11:15:51 2001
-@@ -24,7 +24,7 @@
- #
-
- # change this to the full path AND name of your upclient executable:
--upclient="/usr/local/sbin/upclient"
-+upclient="@PREFIX@/bin/upclient"
-
- # change this to the name of your upclient's pidfile (as defined in
- # config.h of the upclient distribution)
diff --git a/net/upclient/patches/patch-ac b/net/upclient/patches/patch-ac
deleted file mode 100644
index 8e3919943ca..00000000000
--- a/net/upclient/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2001/06/28 10:32:46 wiz Exp $
-
---- src/stats-bsd.c.orig Sat Jun 16 21:12:53 2001
-+++ src/stats-bsd.c
-@@ -21,6 +21,7 @@
- #include <sys/dkstat.h>
- #include <sys/sysctl.h>
- #include <sys/utsname.h>
-+#include <sys/sched.h>
-
- /**
- * @desc Get statistics
diff --git a/net/upclient/pkg/DESCR b/net/upclient/pkg/DESCR
deleted file mode 100644
index 373c6d2cd3f..00000000000
--- a/net/upclient/pkg/DESCR
+++ /dev/null
@@ -1,6 +0,0 @@
-Upclient is a program that keeps track of your server
-uptime, and lets you compare it with the uptime of other
-(similar) hosts. It consists of two parts, a client- and a
-serverpart. The client runs on your server and sends the
-uptime every few minutes to the server. The server
-collects all data in a table on this site.
diff --git a/net/upclient/pkg/MESSAGE b/net/upclient/pkg/MESSAGE
deleted file mode 100644
index a01bc67a629..00000000000
--- a/net/upclient/pkg/MESSAGE
+++ /dev/null
@@ -1,10 +0,0 @@
-======================================================================
-$NetBSD: MESSAGE,v 1.5 2001/06/20 14:30:49 nra Exp $
-
-To start the Uptime Client, run the ${PREFIX}/etc/rc.d/upclient
-script either manually or via /etc/rc.local.
-
-Register your server at http://www.uptimes.net/, then edit
-${LOCALBASE}/etc/upclient.conf to add your assigned AuthKey.
-
-======================================================================
diff --git a/net/upclient/pkg/PLIST b/net/upclient/pkg/PLIST
deleted file mode 100644
index 4278957505c..00000000000
--- a/net/upclient/pkg/PLIST
+++ /dev/null
@@ -1,9 +0,0 @@
-@comment $NetBSD: PLIST,v 1.4 2001/06/20 14:30:49 nra Exp $
-bin/upclient
-etc/rc.d/upclient
-etc/upclient.conf
-share/doc/upclient/AUTHORS
-share/doc/upclient/COPYING
-share/doc/upclient/HISTORY
-share/doc/upclient/README
-@dirrm share/doc/upclient