summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-13 03:50:52 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-13 03:50:52 +0000
commite2064982edb60477ecfa6d56f4551c3c4d9d645c (patch)
tree71515646b31ab19bab351c01ac1704295bc97672 /misc
parentcolorls support has been in the base system since 4.0-RELEASE. Remove this (diff)
less has been part of the base system since 4.1-RELEASE. Remove it.
Notes
Notes: svn path=/head/; revision=67937
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile1
-rw-r--r--misc/less/Makefile33
-rw-r--r--misc/less/distinfo1
-rw-r--r--misc/less/files/patch-aa11
-rw-r--r--misc/less/files/patch-ab41
-rw-r--r--misc/less/pkg-comment1
-rw-r--r--misc/less/pkg-descr4
-rw-r--r--misc/less/pkg-plist3
8 files changed, 0 insertions, 95 deletions
diff --git a/misc/Makefile b/misc/Makefile
index 00e8e7aae85d..290c8173adc3 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -174,7 +174,6 @@
SUBDIR += kp
SUBDIR += kwatch
SUBDIR += lc
- SUBDIR += less
SUBDIR += libelysium
SUBDIR += libh
SUBDIR += libmcal
diff --git a/misc/less/Makefile b/misc/less/Makefile
deleted file mode 100644
index ef803d4e6f23..000000000000
--- a/misc/less/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# New ports collection makefile for: less
-# Date created: 8 Nov 1994
-# Whom: ache
-#
-# $FreeBSD$
-#
-
-PORTNAME= less
-PORTVERSION= 376
-CATEGORIES= misc
-MASTER_SITES= http://www.greenwoodsoftware.com/%SUBDIR%/ \
- ${MASTER_SITE_GNU}
-MASTER_SITE_SUBDIR= less
-
-MAINTAINER= jharris@widomaker.com
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 500003
-FORBIDDEN= already is in the base system
-.endif
-
-GNU_CONFIGURE= yes
-MAN1= less.1 lesskey.1
-
-.if defined(COLOUR_LESS) || defined(COLOR_LESS)
-MAKE_ENV= CPPFLAGS="-DCOLOUR_LESS"
-
-pre-fetch:
- @${ECHO_MSG} "Making a colour version of less."
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/misc/less/distinfo b/misc/less/distinfo
deleted file mode 100644
index b092c1aeee6c..000000000000
--- a/misc/less/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (less-376.tar.gz) = 10ea49ecf3c35fe122002f2b8f1bf1ba
diff --git a/misc/less/files/patch-aa b/misc/less/files/patch-aa
deleted file mode 100644
index 092ecbe95fb9..000000000000
--- a/misc/less/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Fri Apr 9 20:02:59 1999
-+++ Makefile.in Thu Apr 15 23:09:36 1999
-@@ -15,7 +15,7 @@
- LDFLAGS = @LDFLAGS@
- O=o
-
--LIBS = @LIBS@
-+LIBS = -ltermcap
-
- prefix = @prefix@
- exec_prefix = @exec_prefix@
diff --git a/misc/less/files/patch-ab b/misc/less/files/patch-ab
deleted file mode 100644
index fb9dcb946beb..000000000000
--- a/misc/less/files/patch-ab
+++ /dev/null
@@ -1,41 +0,0 @@
---- charset.c.orig Thu Mar 23 05:36:33 2000
-+++ charset.c Mon Jun 19 22:33:43 2000
-@@ -267,6 +267,10 @@
- control_char(c)
- int c;
- {
-+#ifdef COLOR_LESS
-+ if (c == ESC)
-+ return 0;
-+#endif
- c &= 0377;
- return (chardef[c] & IS_CONTROL_CHAR);
- }
-@@ -281,6 +285,20 @@
- {
- static char buf[8];
-
-+#ifdef COLOR_LESS
-+ if(c == ESC)
-+ sprintf(buf, "%c", ESC);
-+ else
-+ {
-+ c &= 0377;
-+ if (!control_char(c))
-+ sprintf(buf, "%c", c);
-+ else if (!control_char(c ^ 0100))
-+ sprintf(buf, "^%c", c ^ 0100);
-+ else
-+ sprintf(buf, binfmt, c);
-+ }
-+#else
- c &= 0377;
- if (!control_char(c))
- sprintf(buf, "%c", c);
-@@ -290,5 +308,6 @@
- sprintf(buf, "^%c", c ^ 0100);
- else
- sprintf(buf, binfmt, c);
-+#endif
- return (buf);
- }
diff --git a/misc/less/pkg-comment b/misc/less/pkg-comment
deleted file mode 100644
index cc556b91ee72..000000000000
--- a/misc/less/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A better pager utility
diff --git a/misc/less/pkg-descr b/misc/less/pkg-descr
deleted file mode 100644
index bfa94d911c7e..000000000000
--- a/misc/less/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-This is the distribution of "less", a paginator similar to "more" or "pg",
-but much more powerful.
-
-WWW: http://www.greenwoodsoftware.com/less/
diff --git a/misc/less/pkg-plist b/misc/less/pkg-plist
deleted file mode 100644
index f85e8a92e7ff..000000000000
--- a/misc/less/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-bin/less
-bin/lesskey
-bin/lessecho