summaryrefslogtreecommitdiff
path: root/misc/less
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1995-02-07 03:55:22 +0000
committerSatoshi Asami <asami@FreeBSD.org>1995-02-07 03:55:22 +0000
commit2db58e929d7f218eeb52f7366c89bbc957808d83 (patch)
tree637cb7905ae6905cd4692d0e798797053609bf5b /misc/less
parentUpgrade to work with current distfile (diff)
Put back in the color patch, but not as default. User should explicitly
type "make color" to get the color version. This should make both Andrew and people who requested color-less happy. :)
Notes
Notes: svn path=/head/; revision=906
Diffstat (limited to 'misc/less')
-rw-r--r--misc/less/Makefile19
1 files changed, 18 insertions, 1 deletions
diff --git a/misc/less/Makefile b/misc/less/Makefile
index 96e3b860133b..fde6597a3195 100644
--- a/misc/less/Makefile
+++ b/misc/less/Makefile
@@ -3,11 +3,28 @@
# Date created: 8 Nov 1994
# Whom: ache
#
-# $Id: Makefile,v 1.2 1994/11/21 23:34:36 ache Exp $
+# $Id: Makefile,v 1.3 1994/12/28 06:22:33 ache Exp $
#
DISTNAME= less-252
MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ ftp://ftp.uu.net/systems/gnu/
GNU_CONFIGURE= YES
+EXTRA_PATCH= patch-ab
+
+color:
+ @echo "Okay, making a color version of less...."
+ @cp ${FILESDIR}/${EXTRA_PATCH} ${PATCHDIR}
+ @${MAKE} ${.MAKEFLAGS} all
+
+pre-clean:
+ @rm -f ${PATCHDIR}/${EXTRA_PATCH}
+
+pre-patch:
+ @if [ ! -f ${PATCHDIR}/${EXTRA_PATCH} ]; then \
+ echo '******************************************************' ; \
+ echo '* Note that you can build a color version of less by *' ; \
+ echo '* typing "make color" following a "make clean" *' ; \
+ echo '******************************************************' ; \
+ fi
.include <bsd.port.mk>