ports/sysutils/less/Makefile
Steve Wills 76cdb5106a sysutils/less: update to 530
PR:		233810
Approved by:	jharris@widomaker.com (maintainer)
2018-12-27 00:26:31 +00:00

37 lines
716 B
Makefile

# Created by: Andrey A. Chernov <ache@FreeBSD.org>
# $FreeBSD$
PORTNAME= less
PORTVERSION= 530
CATEGORIES= sysutils
MASTER_SITES= http://www.greenwoodsoftware.com/less/ \
http://bitrote.org/distfiles/
MAINTAINER= jharris@widomaker.com
COMMENT= Better pager utility
LICENSE= GPLv3
USES= cpe ncurses
CPE_VENDOR= gnu
GNU_CONFIGURE= yes
PLIST_FILES= bin/less bin/lesskey bin/lessecho \
man/man1/less.1.gz man/man1/lesskey.1.gz \
man/man1/lessecho.1.gz
OPTIONS_DEFINE= COLORS
COLORS_DESC= Enable colors support via escape sequence
.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>