blob: 03decee2eab76df753a0935f2e514ea2518d659a (
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
33
34
|
# Created by: Andrey A. Chernov <ache@FreeBSD.org>
# $FreeBSD$
PORTNAME= less
PORTVERSION= 458
CATEGORIES= sysutils
MASTER_SITES= http://www.greenwoodsoftware.com/%SUBDIR%/ \
${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= less
MAINTAINER= jharris@widomaker.com
COMMENT= Better pager utility
LICENSE= GPLv3
GNU_CONFIGURE= yes
MAN1= less.1 lesskey.1 lessecho.1
PLIST_FILES= bin/less bin/lesskey bin/lessecho
OPTIONS_DEFINE= COLORS
COLORS_DESC= Enable colors support via escape sequence
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MCOLORS}
CPPFLAGS+= -DCOLOR_LESS
pre-fetch:
@${ECHO_MSG} "Making a color version of less."
.endif
.include <bsd.port.mk>
|