Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Dec 2017 15:56:04 +0000 (UTC)
From:      Torsten Zuehlsdorff <tz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r455586 - in head/archivers/php71-phar: . files
Message-ID:  <201712051556.vB5Fu4Zw075846@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tz
Date: Tue Dec  5 15:56:04 2017
New Revision: 455586
URL: https://svnweb.freebsd.org/changeset/ports/455586

Log:
  archivers/php71-phar: Unbreak if devel/re2c is installed
  
  There is a upstream bug which makes compiling this module
  impossible if devel/re2c is installed:
  https://bugs.php.net/bug.php?id=75587
  
  The patch unbreaks this behavior.
  
  PR:           223880
  Submitted by: mishin@mh.san.ru

Added:
  head/archivers/php71-phar/files/patch-Makefile.frag   (contents, props changed)
Modified:
  head/archivers/php71-phar/Makefile

Modified: head/archivers/php71-phar/Makefile
==============================================================================
--- head/archivers/php71-phar/Makefile	Tue Dec  5 15:00:03 2017	(r455585)
+++ head/archivers/php71-phar/Makefile	Tue Dec  5 15:56:04 2017	(r455586)
@@ -2,6 +2,7 @@
 
 CATEGORIES=	archivers
 
+PORTREVISION=	2
 MASTERDIR=	${.CURDIR}/../../lang/php71
 
 PKGNAMESUFFIX=	-phar

Added: head/archivers/php71-phar/files/patch-Makefile.frag
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/php71-phar/files/patch-Makefile.frag	Tue Dec  5 15:56:04 2017	(r455586)
@@ -0,0 +1,9 @@
+--- Makefile.frag.orig	2017-12-05 11:59:48 UTC
++++ Makefile.frag
+@@ -1,5 +1,5 @@
+ $(srcdir)/phar_path_check.c: $(srcdir)/phar_path_check.re
+-	@(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re)
++	@(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o phar_path_check.c phar_path_check.re)
+ 
+ pharcmd: $(builddir)/phar.php $(builddir)/phar.phar
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712051556.vB5Fu4Zw075846>