Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 May 2013 13:33:48 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317205 - in head/graphics: ecore-evas evas-engine-opengl evas-engine-sdl
Message-ID:  <201305031333.r43DXmYd075222@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri May  3 13:33:48 2013
New Revision: 317205
URL: http://svnweb.freebsd.org/changeset/ports/317205

Log:
  Fix build with bmake by using gmake if make is bmake

Modified:
  head/graphics/ecore-evas/Makefile
  head/graphics/evas-engine-opengl/Makefile
  head/graphics/evas-engine-sdl/Makefile

Modified: head/graphics/ecore-evas/Makefile
==============================================================================
--- head/graphics/ecore-evas/Makefile	Fri May  3 13:30:47 2013	(r317204)
+++ head/graphics/ecore-evas/Makefile	Fri May  3 13:33:48 2013	(r317205)
@@ -17,6 +17,9 @@ LICENSE=	BSD
 DIST_SUBDIR=	e17
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
+.if defined(.PARSEDIR)
+USE_GMAKE=	yes
+.endif
 USE_EFL=	evas ecore libtool_hack
 USE_EFL_ECORE=	input input_evas
 USE_LDCONFIG=	yes

Modified: head/graphics/evas-engine-opengl/Makefile
==============================================================================
--- head/graphics/evas-engine-opengl/Makefile	Fri May  3 13:30:47 2013	(r317204)
+++ head/graphics/evas-engine-opengl/Makefile	Fri May  3 13:33:48 2013	(r317205)
@@ -19,6 +19,11 @@ LIB_DEPENDS=	freetype:${PORTSDIR}/print/
 DIST_SUBDIR=	e17
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
+MYMAKE=		${MAKE}
+.if defined(.PARSEDIR)
+USE_GMAKE=	yes
+MYMAKE=		${GMAKE}
+.endif
 USE_EFL=	evas librt_hack libtool_hack
 USE_XORG=	x11 xext xrender
 USE_GL=		gl glu
@@ -38,7 +43,7 @@ post-patch:
 
 pre-build:
 	@(cd ${WRKSRC}/src/modules/engines/gl_common; ${SETENV} ${MAKE_ENV} \
-		${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+		${MYMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
 
 post-install:
 	${INSTALL_DATA} ${WRKSRC}/evas-opengl-x11.pc \

Modified: head/graphics/evas-engine-sdl/Makefile
==============================================================================
--- head/graphics/evas-engine-sdl/Makefile	Fri May  3 13:30:47 2013	(r317204)
+++ head/graphics/evas-engine-sdl/Makefile	Fri May  3 13:33:48 2013	(r317205)
@@ -19,6 +19,9 @@ LIB_DEPENDS=	freetype:${PORTSDIR}/print/
 DIST_SUBDIR=	e17
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
+.if defined(.PARSEDIR)
+USE_GMAKE=	yes
+.endif
 USE_EFL=	evas librt_hack libtool_hack
 USE_SDL=	sdl
 USE_LDCONFIG=	yes



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