svn commit: r440291 - head/net-im/folks

Koop Mast kwm at FreeBSD.org
Sat May 6 21:47:42 UTC 2017


Author: kwm
Date: Sat May  6 21:47:40 2017
New Revision: 440291
URL: https://svnweb.freebsd.org/changeset/ports/440291

Log:
  This port requires egrep to have working GNU extensions; in this case, it
  requires being able to match an empty branch. For the time being, use the
  more up to date version of GNU grep, textproc/gnugrep, rather than relying
  on GNU extensions in base grep.
  
  This was identified in a recent exp-run to test installing BSD grep as
  /usr/bin/grep and disable GNU grep compatibility in the process.
  
  PR:		218638
  Submitted by:	Kyle Evans <bsdports at kyle-evans.net>

Modified:
  head/net-im/folks/Makefile

Modified: head/net-im/folks/Makefile
==============================================================================
--- head/net-im/folks/Makefile	Sat May  6 20:37:11 2017	(r440290)
+++ head/net-im/folks/Makefile	Sat May  6 21:47:40 2017	(r440291)
@@ -9,7 +9,8 @@ MASTER_SITES=	GNOME
 MAINTAINER=	gnome at FreeBSD.org
 COMMENT=	library to aggregates people from multiple sources
 
-BUILD_DEPENDS=	vapigen:lang/vala
+BUILD_DEPENDS=	vapigen:lang/vala \
+		${LOCALBASE}/bin/egrep:textproc/gnugrep
 LIB_DEPENDS=	libgee-0.8.so:devel/libgee \
 		libgcr-3.so:security/gcr \
 		libzeitgeist-2.0.so:sysutils/zeitgeist \
@@ -22,6 +23,7 @@ USES=		gettext gmake libtool localbase p
 USE_GNOME=	evolutiondataserver3 intlhack introspection:build
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-bluez-backend
+CONFIGURE_ENV+=	ac_cv_path_EGREP=${LOCALBASE}/bin/egrep
 INSTALL_TARGET=	install-strip
 
 GLIB_SCHEMAS=	org.freedesktop.folks.gschema.xml


More information about the svn-ports-all mailing list