diff options
-rw-r--r-- | sysutils/tree/DESCR | 7 | ||||
-rw-r--r-- | sysutils/tree/Makefile | 13 | ||||
-rw-r--r-- | sysutils/tree/PLIST | 1 | ||||
-rw-r--r-- | sysutils/tree/distinfo | 6 | ||||
-rw-r--r-- | sysutils/tree/patches/patch-aa | 12 |
5 files changed, 39 insertions, 0 deletions
diff --git a/sysutils/tree/DESCR b/sysutils/tree/DESCR new file mode 100644 index 00000000000..f264e765971 --- /dev/null +++ b/sysutils/tree/DESCR @@ -0,0 +1,7 @@ +Tree is a recursive directory listing program that produces a depth +indented listing of files, which is colorized ala dircolors if the +LS_COLORS environment variable is set and output is to tty. + +Tree has various options for changing the information printed (size, +permissions, etc.) As well as plain text output, it is capable of +producing HTML output that includes links with an appropriate prefix. diff --git a/sysutils/tree/Makefile b/sysutils/tree/Makefile new file mode 100644 index 00000000000..697eebe8434 --- /dev/null +++ b/sysutils/tree/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2007/10/17 06:48:39 cjs Exp $ +# + +DISTNAME= tree-1.5.1.1 +CATEGORIES= sysutils +MASTER_SITES= ftp://mama.indstate.edu/linux/tree/ +EXTRACT_SUFX= .tgz + +MAINTAINER= cjs@NetBSD.org +HOMEPAGE= http://mama.indstate.edu/users/ice/tree/ +COMMENT= Print a text or HTML tree diagram of a directory structure + +.include "../../mk/bsd.pkg.mk" diff --git a/sysutils/tree/PLIST b/sysutils/tree/PLIST new file mode 100644 index 00000000000..faf1770c9dd --- /dev/null +++ b/sysutils/tree/PLIST @@ -0,0 +1 @@ +@comment $NetBSD: PLIST,v 1.1 2007/10/17 06:48:39 cjs Exp $ diff --git a/sysutils/tree/distinfo b/sysutils/tree/distinfo new file mode 100644 index 00000000000..348bda88ec5 --- /dev/null +++ b/sysutils/tree/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2007/10/17 06:48:39 cjs Exp $ + +SHA1 (tree-1.5.1.1.tgz) = ca4145bf1d2957ff3f4e6af0f64ce92d102fd356 +RMD160 (tree-1.5.1.1.tgz) = 7cc78b7a0103a7f81ec40c2c5e1ff2399fd7bb20 +Size (tree-1.5.1.1.tgz) = 30792 bytes +SHA1 (patch-aa) = d30587d98d9719f6a72eaf9e8196f3d6022c943f diff --git a/sysutils/tree/patches/patch-aa b/sysutils/tree/patches/patch-aa new file mode 100644 index 00000000000..952bd9adb3a --- /dev/null +++ b/sysutils/tree/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1 2007/10/17 06:48:40 cjs Exp $ + +--- tree.c.orig 2007-10-17 15:28:44.000000000 +0900 ++++ tree.c 2007-10-17 15:28:59.000000000 +0900 +@@ -17,7 +17,6 @@ + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +-#include <features.h> + #include <stdlib.h> + #include <stdio.h> + #include <time.h> |