Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/sysutils/pstree/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 5 Feb 2004 20:37:52 -0000 1.8 +++ Makefile 8 Jul 2004 10:30:31 -0000 @@ -6,9 +6,10 @@ # PORTNAME= pstree -PORTVERSION= 2.21 +PORTVERSION= 2.25 CATEGORIES= sysutils -MASTER_SITES= http://fresh.t-systems-sfr.com/unix/src/misc/ +MASTER_SITES= ftp://ftp.thp.uni-duisburg.de/pub/source/ \ + http://fresh.t-systems-sfr.com/unix/src/misc/ MAINTAINER= ports@FreeBSD.org COMMENT= List processes as a tree Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/sysutils/pstree/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 29 Jan 2004 16:11:50 -0000 1.6 +++ distinfo 8 Jul 2004 10:26:10 -0000 @@ -1,2 +1,2 @@ -MD5 (pstree-2.21.tar.gz) = d091946ea76b89ec74216d9ccd7b0702 -SIZE (pstree-2.21.tar.gz) = 8436 +MD5 (pstree-2.25.tar.gz) = 2d0e3a0e80c033e81f781fe718f1cfe8 +SIZE (pstree-2.25.tar.gz) = 9106 cvs diff: Diffing files Index: files/patch-pstree.c =================================================================== RCS file: files/patch-pstree.c diff -N files/patch-pstree.c --- files/patch-pstree.c 10 Aug 2003 07:05:07 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ ---- pstree.c.orig -+++ pstree.c -@@ -655,8 +655,9 @@ - sprintf(nhead, "%s%s ", head, - head[0] == '\0' ? "" : EXIST(P[idx].sister) ? C->bar : " "); - -- for (child = P[idx].child; EXIST(child); child = P[child].sister) -- PrintTree(child, nhead); -+ if (P[idx].pid) -+ for (child = P[idx].child; EXIST(child); child = P[child].sister) -+ PrintTree(child, nhead); - } - - void Usage(void) {