Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
misc/uptimec/DESCR Normal file
View File

@@ -0,0 +1,7 @@
The Uptime Project consists of three parts: The first is one tiny
client that runs on each host that takes part in the project and
sends information about its uptime to the project. The second part
is a central database-server that collects and stores updates from
all participating hosts, and the third part is a website where
statistics can be viewed and users can administrate their accounts
and add new hosts.

14
misc/uptimec/Makefile Normal file
View File

@@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.6 2012/10/08 09:57:39 asau Exp $
#
DISTNAME= uptimec-0.2p3
CATEGORIES= misc
MASTER_SITES= http://www.mreriksson.net/downloads/
MAINTAINER= ola@mrEriksson.net
HOMEPAGE= http://www.mreriksson.net/uptimes/
COMMENT= Uptime Project client
GNU_CONFIGURE= yes
.include "../../mk/bsd.pkg.mk"

2
misc/uptimec/PLIST Normal file
View File

@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2004/04/13 14:06:10 xtraeme Exp $
bin/uptimec

6
misc/uptimec/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.4 2006/01/03 16:55:43 joerg Exp $
SHA1 (uptimec-0.2p3.tar.gz) = b14a7ba166d558b75ea3d5700dc73ba18b199e14
RMD160 (uptimec-0.2p3.tar.gz) = 79e20f60064fc49dfab8310ac0ead699af4ad188
Size (uptimec-0.2p3.tar.gz) = 82082 bytes
SHA1 (patch-aa) = f8190edd5486d8088310e129d679de7751fd272d

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-aa,v 1.1 2006/01/03 16:55:43 joerg Exp $
--- uptimec.c.orig 2006-01-03 16:51:33.000000000 +0000
+++ uptimec.c
@@ -60,7 +60,7 @@
/* NetBSD, FreeBSD, OpenBSD and MacOS X */
#ifndef GETUPTIME_METHOD_FOUND
# if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \
- defined(__APPLE__) || defined(__DARWIN__)
+ defined(__APPLE__) || defined(__DARWIN__) || defined(__DragonFly__)
# define GETUPTIME_BSDLIKE
# define GETUPTIME_METHOD_FOUND
# endif
@@ -529,7 +529,7 @@ int main(int argc, char** argv)
/* We do not want password etc given on commandline to be visible when
listing processes with the ps-command */
# if defined(HAVE_SETPROCTITLE)
-# if defined(__FreeBSD__)
+# if defined(__FreeBSD__) || defined(__DragonFly__)
setproctitle("-uptimec");
# else
setproctitle(NULL);