svn commit: r317205 - in head/graphics: ecore-evas evas-engine-opengl evas-engine-sdl
Baptiste Daroussin
bapt at FreeBSD.org
Fri May 3 13:33:49 UTC 2013
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
More information about the svn-ports-head
mailing list