summaryrefslogtreecommitdiff
path: root/sysutils/lsof
diff options
context:
space:
mode:
authoratatat <atatat@pkgsrc.org>2002-10-12 03:13:39 +0000
committeratatat <atatat@pkgsrc.org>2002-10-12 03:13:39 +0000
commit06e80c673647a99434d3040935a8b8aee6a250d0 (patch)
tree99ff6669c12e9a3417c0722c71411f870bd3c184 /sysutils/lsof
parent500f5313b35765a1dc3b94828d23e2591b97cf22 (diff)
downloadpkgsrc-06e80c673647a99434d3040935a8b8aee6a250d0.tar.gz
Upgrade lsof pkg to 4.65. Notable changes from 00DIST are:
... Enabled compiling of lsof for NetBSD 1.5 with the NULL file system, using a patch from Andrew Brown <atatat@atatdot.net>. ... Applied a patch, supplied by Andrew Brown <atatat@atatdot.net>, that updates lsof for NetBSD version 1.6.6. Corrected handling of the NetBSD nullfs. ... This obsoletes patch-ab. Again. :)
Diffstat (limited to 'sysutils/lsof')
-rw-r--r--sysutils/lsof/Makefile4
-rw-r--r--sysutils/lsof/distinfo7
-rw-r--r--sysutils/lsof/patches/patch-ab36
3 files changed, 5 insertions, 42 deletions
diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile
index 1e4a313cec6..587874b8afb 100644
--- a/sysutils/lsof/Makefile
+++ b/sysutils/lsof/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.55 2002/06/26 20:11:29 atatat Exp $
+# $NetBSD: Makefile,v 1.56 2002/10/12 03:13:39 atatat Exp $
#
-DISTNAME= lsof_4.64
+DISTNAME= lsof_4.65
PKGNAME= ${DISTNAME:S/_/-/}
TMPWRK= ${WRKDIR}/${DISTNAME}
WRKSRC= ${WRKDIR}/${DISTNAME}/${SRCBALL_NAME}
diff --git a/sysutils/lsof/distinfo b/sysutils/lsof/distinfo
index a8697e4695c..9499cfb954f 100644
--- a/sysutils/lsof/distinfo
+++ b/sysutils/lsof/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.20 2002/09/13 16:55:14 atatat Exp $
+$NetBSD: distinfo,v 1.21 2002/10/12 03:13:40 atatat Exp $
-SHA1 (lsof_4.64.tar.gz) = eacd1d259d136b27f284928574529da0e35fe6b9
-Size (lsof_4.64.tar.gz) = 942463 bytes
+SHA1 (lsof_4.65.tar.gz) = 776be55320f65377547511a5bf9d8a8958bd465c
+Size (lsof_4.65.tar.gz) = 948408 bytes
SHA1 (patch-aa) = 1946122860ad68f1c5e07f6ae82a147eb51e01c5
-SHA1 (patch-ab) = 9b72f810ca0abe5894657ee8fe14d441b585fa95
diff --git a/sysutils/lsof/patches/patch-ab b/sysutils/lsof/patches/patch-ab
deleted file mode 100644
index 527ec7652a1..00000000000
--- a/sysutils/lsof/patches/patch-ab
+++ /dev/null
@@ -1,36 +0,0 @@
-$NetBSD: patch-ab,v 1.15 2002/09/13 16:55:15 atatat Exp $
-
-Make 4.64 build under 1.5 and handle the change to ufs/mfs/mfsnode.h
-that involves struct bufq_state not being exposed to userland any
-more.
-
---- dialects/n+obsd/dlsof.h.orig Sun Jun 16 21:44:15 2002
-+++ dialects/n+obsd/dlsof.h
-@@ -54,7 +54,15 @@
- #include <sys/mbuf.h>
-
- # if defined(NETBSDV)
-+# if __NetBSD_Version__>=106060000
-+#define _KERNEL
-+struct buf; /* to satisfy a function prototype in buf.h */
-+# endif
-+#include <sys/ucred.h>
- #include <sys/buf.h>
-+# if __NetBSD_Version__>=106060000
-+#undef _KERNEL
-+# endif
- # endif /* defined(NETBSDV) */
-
- #define NFS
-@@ -209,9 +216,9 @@ struct sockproto {
-
- # if defined(HASNULLFS)
- #define _KERNEL
--# if defined(NETBSDV) && NETBSDV>=1060
-+# if defined(NETBSDV) && NETBSDV>=1050
- #include "netexport.h"
--# endif /* defined(NETBSDV) && NETBSDV>=1060 */
-+# endif /* defined(NETBSDV) && NETBSDV>=1050 */
- #include <miscfs/nullfs/null.h>
- #undef _KERNEL
- # endif /* defined(HASNULLFS) */