summaryrefslogtreecommitdiff
path: root/sysutils/skill
diff options
context:
space:
mode:
authorkim <kim@pkgsrc.org>1999-01-05 19:12:00 +0000
committerkim <kim@pkgsrc.org>1999-01-05 19:12:00 +0000
commit3463d74b2c07430fd9cf074f59329b92337e9d17 (patch)
treecd009b403c68a0051750146c22fe6a41f2191d52 /sysutils/skill
parent51704a97a80bf86d89194efd0336c6b43618df44 (diff)
downloadpkgsrc-3463d74b2c07430fd9cf074f59329b92337e9d17.tar.gz
Updated to skill-3.7.7. The author included my patch to avoid
segfaults on BSD 4.4 -derived systems (related to getting the number of signals right). Adds support for SIGPWR on NetBSD.
Diffstat (limited to 'sysutils/skill')
-rw-r--r--sysutils/skill/Makefile12
-rw-r--r--sysutils/skill/files/md54
-rw-r--r--sysutils/skill/patches/patch-aa10
-rw-r--r--sysutils/skill/patches/patch-ab16
4 files changed, 13 insertions, 29 deletions
diff --git a/sysutils/skill/Makefile b/sysutils/skill/Makefile
index 4ac2e085440..eae201aa7da 100644
--- a/sysutils/skill/Makefile
+++ b/sysutils/skill/Makefile
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.2 1999/01/05 00:32:28 kim Exp $
+# $NetBSD: Makefile,v 1.3 1999/01/05 19:12:00 kim Exp $
#
-# There was a reason for the last digit and the patch number in
-# the distribution not matching, but it escapes me right now.
+# The version number for skill does not match the @P number.
+# This is normal.
-DISTNAME= skill-3.7@P5
-PKGNAME= skill-3.7.6
+DISTNAME= skill-3.7@P6
+PKGNAME= skill-3.7.7
WRKSRC= ${WRKDIR}/${PKGNAME}
CATEGORIES= sysutils
-MASTER_SITES= ftp://jaguar.cs.utah.edu/pub/skill/
+MASTER_SITES= ftp://fast.cs.utah.edu/pub/skill/
EXTRACT_SUFX= _tar.Z
MAINTAINER= kim@tac.nyc.ny.us
diff --git a/sysutils/skill/files/md5 b/sysutils/skill/files/md5
index 2b5ba6e3d0d..e603961e903 100644
--- a/sysutils/skill/files/md5
+++ b/sysutils/skill/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.3 1999/01/05 00:32:29 kim Exp $
+$NetBSD: md5,v 1.4 1999/01/05 19:12:00 kim Exp $
-MD5 (skill-3.7@P5_tar.Z) = 1f53b98ada8aa383f083c61d7a3477b2
+MD5 (skill-3.7@P6_tar.Z) = 5e7a53006012e6314215465f79e1cab8
diff --git a/sysutils/skill/patches/patch-aa b/sysutils/skill/patches/patch-aa
index 3525ca46de2..90fe4d2bbb6 100644
--- a/sysutils/skill/patches/patch-aa
+++ b/sysutils/skill/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.2 1998/08/07 11:14:08 agc Exp $
+$NetBSD: patch-aa,v 1.3 1999/01/05 19:12:00 kim Exp $
---- Makefile.orig Wed Oct 29 14:28:22 1997
-+++ Makefile Sat Aug 1 20:56:09 1998
-@@ -50,22 +50,29 @@
+--- Makefile.orig Wed Oct 28 11:20:26 1998
++++ Makefile Tue Jan 5 14:02:28 1999
+@@ -51,22 +51,29 @@
SHELL= /bin/sh
# CONFIGURE: Set location of executable, it's group and mode.
@@ -37,7 +37,7 @@ $NetBSD: patch-aa,v 1.2 1998/08/07 11:14:08 agc Exp $
SRCS= main.c argparse.c getproc.c
OBJS= main.o argparse.o getproc.o
-@@ -86,20 +93,20 @@
+@@ -87,20 +94,20 @@
install: skill
#(SysV) filepriv -d ${DESTDIR}/${BINDIR}/skill
diff --git a/sysutils/skill/patches/patch-ab b/sysutils/skill/patches/patch-ab
deleted file mode 100644
index e60f5ae93c7..00000000000
--- a/sysutils/skill/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.1 1999/01/05 00:32:29 kim Exp $
-
---- machdep/bsd-44.c.ORIG Thu Mar 20 11:20:09 1997
-+++ machdep/bsd-44.c Mon Jan 4 19:24:00 1999
-@@ -41,9 +41,9 @@
- "PIPE", "ALRM", "TERM", "URG", "STOP", "TSTP", /* 13 - 18 */
- "CONT", "CHLD", "TTIN", "TTOU", "IO", "XCPU", /* 19 - 24 */
- "XFSZ", "VTALRM", "PROF", "WINCH", "INFO", "USR1", /* 25 - 30 */
-- "USR2", "32" /* 31 - 32 */
-+ "USR2", "PWR" /* 31 - 32 */
- };
--int NSig = NSIG;
-+int NSig = NSIG - 1;
-
- #define SETCMD(dst,src,maxlen) { \
- if (maxlen > 0) src[maxlen] = '\0'; \