blob: 5a92c03eb1ef59986299ea612e433d155c37642a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: less
# Date created: 8 Nov 1994
# Whom: ache
#
# $FreeBSD$
#
PORTNAME= less
PORTVERSION= 382
CATEGORIES= sysutils
MASTER_SITES= http://www.greenwoodsoftware.com/%SUBDIR%/ \
${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= less
MAINTAINER= jharris@widomaker.com
COMMENT= A better pager utility
PLIST_FILES= bin/less bin/lesskey bin/lessecho
.include <bsd.port.pre.mk>
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>
|