summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorsnj <snj>2008-11-06 19:59:04 +0000
committersnj <snj>2008-11-06 19:59:04 +0000
commit94b4f1d1f70ffd84ede5b40cf082a9de6b0678d2 (patch)
tree1a3944c93cb4942efc86c1620689927af255633e /chat
parente8fc371a77024409f8a71236288ee4d9ba9c9a68 (diff)
downloadpkgsrc-94b4f1d1f70ffd84ede5b40cf082a9de6b0678d2.tar.gz
Update to 0.6.3. Zillions of bug fixes, see the included ChangeLog for
details.
Diffstat (limited to 'chat')
-rw-r--r--chat/climm/Makefile6
-rw-r--r--chat/climm/distinfo9
-rw-r--r--chat/climm/patches/patch-aa47
3 files changed, 6 insertions, 56 deletions
diff --git a/chat/climm/Makefile b/chat/climm/Makefile
index 942e79aeafa..142b9ea4dc5 100644
--- a/chat/climm/Makefile
+++ b/chat/climm/Makefile
@@ -1,8 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2008/06/12 02:14:16 joerg Exp $
-#
+# $NetBSD: Makefile,v 1.6 2008/11/06 19:59:04 snj Exp $
-DISTNAME= climm-0.6.2
-#PKGREVISION= 2
+DISTNAME= climm-0.6.3
CATEGORIES= chat
MASTER_SITES= http://www.climm.org/source/
EXTRACT_SUFX= .tgz
diff --git a/chat/climm/distinfo b/chat/climm/distinfo
index 585d5c2489a..c6da2add160 100644
--- a/chat/climm/distinfo
+++ b/chat/climm/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/03/01 21:14:11 mjl Exp $
+$NetBSD: distinfo,v 1.3 2008/11/06 19:59:04 snj Exp $
-SHA1 (climm-0.6.2.tgz) = 42ab55aa576a9ab0b51d83b38dc06af1a5467941
-RMD160 (climm-0.6.2.tgz) = 7a52b4d26456c1068707e5cc3bafdbad31a28e2a
-Size (climm-0.6.2.tgz) = 1190182 bytes
-SHA1 (patch-aa) = e5a5fea34fd165efe5f91e71a1c9cd9cb4a7cb84
+SHA1 (climm-0.6.3.tgz) = ea4a17d4ad86f25719957ca906dd9d46e00caaa9
+RMD160 (climm-0.6.3.tgz) = 849fe9185bb93d94ffd18289d837f4c51061192b
+Size (climm-0.6.3.tgz) = 1189460 bytes
diff --git a/chat/climm/patches/patch-aa b/chat/climm/patches/patch-aa
deleted file mode 100644
index 77c44ca9b92..00000000000
--- a/chat/climm/patches/patch-aa
+++ /dev/null
@@ -1,47 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2007/11/28 11:45:34 mjl Exp $
-
---- src/os_unix.c.orig 2007-11-28 11:58:20.000000000 +0100
-+++ src/os_unix.c 2007-11-28 12:13:49.000000000 +0100
-@@ -17,6 +17,12 @@
- #include <ctype.h>
- #endif
-
-+#ifndef MAXINT
-+#include <limits.h>
-+#include <utmpx.h>
-+#define MAXINT INT_MAX
-+#endif
-+
- static int console_idle (time_t now, struct utmp *u)
- {
- struct stat sbuf;
-@@ -43,7 +49,7 @@
- */
- UDWORD os_DetermineIdleTime (time_t now, time_t last)
- {
-- struct utmp *u;
-+ struct utmpx *u;
- struct passwd *pass;
- uid_t uid;
- int tmp, min = MAXINT;
-@@ -54,9 +60,8 @@
- if (!pass)
- return -1;
-
-- utmpname (UTMP_FILE);
-- setutent();
-- while ((u = getutent()))
-+ setutxent();
-+ while ((u = getutxent()))
- {
- if (u->ut_type != USER_PROCESS)
- continue;
-@@ -67,7 +72,7 @@
- tmp = console_idle (now, u);
- min = (tmp < min) ? tmp : min ;
- }
-- endutent();
-+ endutxent();
- if (min == MAXINT || now - last < min)
- min = now - last;
- return min;