cfb4f731a9
PR: 245626 Submitted by: jharris@widomaker.com (maintainer)
48 lines
913 B
Makefile
48 lines
913 B
Makefile
# Created by: Andrey A. Chernov <ache@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= less
|
|
PORTVERSION= 551
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.greenwoodsoftware.com/less/
|
|
|
|
MAINTAINER= jharris@widomaker.com
|
|
COMMENT= Better pager utility
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cpe ncurses
|
|
|
|
CPE_VENDOR= gnu
|
|
GNU_CONFIGURE= yes
|
|
|
|
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
|
|
|
|
COLORS_DESC= Enable colors support via escape sequence
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCOLORS}
|
|
CPPFLAGS+= -DCOLOR_LESS
|
|
.endif
|
|
|
|
.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>
|