sysutils/less: add pcre option, clean up, enable color and pcre options

PR:		239225
Approved by:	jharris@widomaker.com (maintainer)
This commit is contained in:
Steve Wills 2019-07-19 14:14:45 +00:00
parent d464752bd6
commit 6f0bcb485c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=506936

View File

@ -3,6 +3,7 @@
PORTNAME= less
PORTVERSION= 530
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://www.greenwoodsoftware.com/less/ \
http://bitrote.org/distfiles/
@ -13,24 +14,36 @@ COMMENT= Better pager utility
LICENSE= GPLv3
USES= cpe ncurses
CPE_VENDOR= gnu
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
PLIST_FILES= bin/less \
bin/lessecho \
bin/lesskey \
man/man1/less.1.gz \
man/man1/lessecho.1.gz \
man/man1/lesskey.1.gz
OPTIONS_DEFINE= COLORS PCRE
OPTIONS_DEFAULT= COLORS PCRE
PCRE_USES= localbase
PCRE_LIB_DEPENDS= libpcre.so:devel/pcre
OPTIONS_DEFINE= COLORS
COLORS_DESC= Enable colors support via escape sequence
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MCOLORS}
CPPFLAGS+= -DCOLOR_LESS
.endif
pre-fetch:
@${ECHO_MSG} "Making a color version of less."
.if ${PORT_OPTIONS:MPCRE}
CONFIGURE_ARGS+= --with-regex=pcre
LDFLAGS+= -L${LOCALBASE}/lib -lpcre
.else
CONFIGURE_ARGS+= --with-regex=posix
.endif
.include <bsd.port.mk>