diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2011-01-13 07:23:00 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2011-01-13 07:23:00 +0000 |
commit | 4579ae2bc70fb9d7c379ccda403a7d1f3bf42ee5 (patch) | |
tree | 6b71ca4f35ca46ab8de5edf041b01f8bb3a816e4 | |
parent | - Remove MD5 (diff) |
Fix MAKE_ENV to make the port build with pending patch from ports/153625.
PR: ports/153625
Submitted by: gerald
Feature safe: yes
Approved by: ehaupt (mentor)
Notes
Notes:
svn path=/head/; revision=267726
-rw-r--r-- | emulators/jzintv/Makefile | 5 | ||||
-rw-r--r-- | emulators/jzintv/distinfo | 1 | ||||
-rw-r--r-- | games/openjazz/Makefile | 8 | ||||
-rw-r--r-- | games/openjazz/distinfo | 1 |
4 files changed, 7 insertions, 8 deletions
diff --git a/emulators/jzintv/Makefile b/emulators/jzintv/Makefile index 33180d870203..75bfaeda6e3f 100644 --- a/emulators/jzintv/Makefile +++ b/emulators/jzintv/Makefile @@ -23,8 +23,9 @@ USE_GMAKE= yes USE_XORG= x11 xau xdmcp USE_SDL= sdl USE_ZIP= yes -MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include `${SDL_CONFIG} --cflags`" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs`" +CPPFLAGS+= -I${LOCALBASE}/include `${SDL_CONFIG} --cflags` +LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs` +MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" OPTIONS= TOOLS "Install additional tools" off TOOLS= as1600 crc32 dasm1600 dis1600 frombit_r gms2rom imvtoppm rom2bin \ diff --git a/emulators/jzintv/distinfo b/emulators/jzintv/distinfo index 1781949e1887..99c7b333f03c 100644 --- a/emulators/jzintv/distinfo +++ b/emulators/jzintv/distinfo @@ -1,3 +1,2 @@ -MD5 (jzintv-1.0-beta3-src.zip) = 67aed7e845726eba6ffc4706a88d3366 SHA256 (jzintv-1.0-beta3-src.zip) = 364109dfc03ebf2a19dc4cd578ad6076dcbbda7d482bca3695c4b7e3f46ecce1 SIZE (jzintv-1.0-beta3-src.zip) = 2566552 diff --git a/games/openjazz/Makefile b/games/openjazz/Makefile index 0f6dbdc824f4..403b16daf885 100644 --- a/games/openjazz/Makefile +++ b/games/openjazz/Makefile @@ -28,10 +28,10 @@ USE_SDL= sdl USE_DOS2UNIX= yes DOS2UNIX_REGEX= .*\.(h|cpp) -CPPFLAGS= "-I${LOCALBASE}/include `${SDL_CONFIG} --cflags` \ - -DDATAPATH=\\\"${DATADIR}/\\\" -DHOMEDIR" -LDFLAGS= "-L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs`" -MAKE_ENV= CPPFLAGS=${CPPFLAGS} LDFLAGS=${LDFLAGS} +CPPFLAGS+= -I${LOCALBASE}/include `${SDL_CONFIG} --cflags` \ + -DDATAPATH=\\\"${DATADIR}/\\\" -DHOMEDIR +LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs` +MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" SUB_FILES= pkg-message diff --git a/games/openjazz/distinfo b/games/openjazz/distinfo index b03b40d88574..51ab3fbe3716 100644 --- a/games/openjazz/distinfo +++ b/games/openjazz/distinfo @@ -1,3 +1,2 @@ -MD5 (OpenJazz-src-260910.zip) = 08f8e0d9e2915139bf645c7a0a03f3e0 SHA256 (OpenJazz-src-260910.zip) = d4c18cab4717344b7adfe6b2840ae13b17590bc72ffc4b76e46bb627e6549129 SIZE (OpenJazz-src-260910.zip) = 195047 |