svn commit: r506936 - head/sysutils/less

Steve Wills swills at FreeBSD.org
Fri Jul 19 14:14:46 UTC 2019


Author: swills
Date: Fri Jul 19 14:14:45 2019
New Revision: 506936
URL: https://svnweb.freebsd.org/changeset/ports/506936

Log:
  sysutils/less: add pcre option, clean up, enable color and pcre options
  
  PR:		239225
  Approved by:	jharris at widomaker.com (maintainer)

Modified:
  head/sysutils/less/Makefile   (contents, props changed)

Modified: head/sysutils/less/Makefile
==============================================================================
--- head/sysutils/less/Makefile	Fri Jul 19 14:12:54 2019	(r506935)
+++ head/sysutils/less/Makefile	Fri Jul 19 14:14:45 2019	(r506936)
@@ -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
+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
 
-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>


More information about the svn-ports-head mailing list