svn commit: r439425 - head/games/fairymax

Larry Rosenman ler at FreeBSD.org
Wed Apr 26 01:01:30 UTC 2017


Author: ler
Date: Wed Apr 26 01:01:28 2017
New Revision: 439425
URL: https://svnweb.freebsd.org/changeset/ports/439425

Log:
  games/fairymax: Improve regex conformance
  
  PR:		218606
  Submitted by:	Kyle Evans <bsdports at kyle-evans.net>
  Approved by:	Kalten <kalten at gmx.at> (maintainer), adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D10502

Modified:
  head/games/fairymax/Makefile

Modified: head/games/fairymax/Makefile
==============================================================================
--- head/games/fairymax/Makefile	Wed Apr 26 00:42:44 2017	(r439424)
+++ head/games/fairymax/Makefile	Wed Apr 26 01:01:28 2017	(r439425)
@@ -3,6 +3,7 @@
 
 PORTNAME=	fairymax
 PORTVERSION=	5.0b.20160316.1
+PORTREVISION=	1
 CATEGORIES=	games
 MASTER_SITES=	http://freeheimdall.spdns.org/files/
 # http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git;a=snapshot;h=${COMMIT_HASH};sf=tgz
@@ -34,11 +35,11 @@ post-patch:
 		${WRKSRC}/fairymax.c
 	@${REINPLACE_CMD} -E 's|^(prefix\|bindir\|mandir\|datadir\|plugindir\|fairydir) =|\1 ?=|' \
 		${WRKSRC}/Makefile
-	@${REINPLACE_CMD} -E 's|^	cp (.{srcdir}/fairymax .{srcdir}/shamax .{srcdir}/maxqi .\(DESTDIR\).\(bindir\))|	${INSTALL_PROGRAM} \1|' \
+	@${REINPLACE_CMD} -E 's|^	cp (.\{srcdir\}/fairymax .\{srcdir\}/shamax .\{srcdir\}/maxqi .\(DESTDIR\).\(bindir\))|	${INSTALL_PROGRAM} \1|' \
 		${WRKSRC}/Makefile
-	@${REINPLACE_CMD} -E 's|^	cp (.{srcdir}/data/)|	${INSTALL_DATA} \1|' \
+	@${REINPLACE_CMD} -E 's|^	cp (.\{srcdir\}/data/)|	${INSTALL_DATA} \1|' \
 		${WRKSRC}/Makefile
-	@${REINPLACE_CMD} -E 's|^	cp (.{srcdir}/fairymax.6.gz)|	${INSTALL_MAN} \1|' \
+	@${REINPLACE_CMD} -E 's|^	cp (.\{srcdir\}/fairymax.6.gz)|	${INSTALL_MAN} \1|' \
 		${WRKSRC}/Makefile
 
 post-install-DOCS-on:


More information about the svn-ports-head mailing list