svn commit: r472033 - head/devel/libdparse

Jose Alonso Cardenas Marquez acm at FreeBSD.org
Sat Jun 9 02:13:12 UTC 2018


Author: acm
Date: Sat Jun  9 02:13:07 2018
New Revision: 472033
URL: https://svnweb.freebsd.org/changeset/ports/472033

Log:
  - Fix build
  
  Reported by:	pkg-fallout

Modified:
  head/devel/libdparse/Makefile

Modified: head/devel/libdparse/Makefile
==============================================================================
--- head/devel/libdparse/Makefile	Sat Jun  9 00:35:57 2018	(r472032)
+++ head/devel/libdparse/Makefile	Sat Jun  9 02:13:07 2018	(r472033)
@@ -12,7 +12,8 @@ COMMENT=	Library for lexing and parsing D source code
 LICENSE=	BSL
 
 BUILD_DEPENDS=	ldmd2:lang/ldc \
-		dub:devel/dub
+		dub:devel/dub \
+		${LOCALBASE}/lib/d/libstdx-allocator.a:devel/stdx-allocator
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	dlang-community
@@ -20,6 +21,9 @@ GH_ACCOUNT=	dlang-community
 DUB_CMD=	${LOCALBASE}/bin/dub build --build=release
 D_INCLUDE_DIR=	${PREFIX}/include/d
 D_LIB_DIR=	${PREFIX}/lib/d
+
+post-patch:
+	${REINPLACE_CMD} '11,13d' ${WRKSRC}/dub.json
 
 do-build:
 	@cd ${WRKSRC} && ${DUB_CMD}


More information about the svn-ports-all mailing list