diff options
author | bapt <bapt@FreeBSD.org> | 2014-06-25 13:35:31 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-06-25 13:35:31 +0800 |
commit | 7081e7e5b12afca923788e24924af7212c2bc526 (patch) | |
tree | 6379d84ceeca72bc6c80702dd60bd714b378b04a /japanese | |
parent | d11d1e4cc7b3c1ec281b2ea35d2fc5d85e4c5102 (diff) | |
download | freebsd-ports-gnome-7081e7e5b12afca923788e24924af7212c2bc526.tar.gz freebsd-ports-gnome-7081e7e5b12afca923788e24924af7212c2bc526.tar.zst freebsd-ports-gnome-7081e7e5b12afca923788e24924af7212c2bc526.zip |
Convert GMAKE to MAKE_CMD
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends
With hat: portmgr
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/dvipsk/Makefile | 6 | ||||
-rw-r--r-- | japanese/emacs-emcws/Makefile | 4 | ||||
-rw-r--r-- | japanese/mozc-server/Makefile | 2 | ||||
-rw-r--r-- | japanese/uim-anthy/Makefile | 12 |
4 files changed, 12 insertions, 12 deletions
diff --git a/japanese/dvipsk/Makefile b/japanese/dvipsk/Makefile index 577453f4b50c..ec262cc94c4f 100644 --- a/japanese/dvipsk/Makefile +++ b/japanese/dvipsk/Makefile @@ -91,10 +91,10 @@ post-configure: do-build: cd ${WRKDIR}/${TETEX_SRC}/texk/dvipsk &&\ - ${SETENV} ${MAKE_ENV} ${GMAKE} \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET} cd ${WRKDIR}/${TETEX_SRC}/texk/udvipsk &&\ - ${SETENV} ${MAKE_ENV} ${GMAKE} \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_FLAGS} ${MAKEFILE} \ program=udvips XDEFS=-DUDVIPS \ ${ALL_TARGET} @@ -102,7 +102,7 @@ do-build: do-install: ${MKDIR} ${PREFIX}/${DVIPSCONFIGDIR}/config cd ${WRKDIR}/${TETEX_SRC}/texk/dvipsk &&\ - ${SETENV} ${MAKE_ENV} ${GMAKE} \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET} ${INSTALL_PROGRAM} \ ${PATCH_WRKSRC}/udvipsk/udvips \ diff --git a/japanese/emacs-emcws/Makefile b/japanese/emacs-emcws/Makefile index d024a85cad3c..23d8abf442e2 100644 --- a/japanese/emacs-emcws/Makefile +++ b/japanese/emacs-emcws/Makefile @@ -164,8 +164,8 @@ pre-build: ${FIND} ${WRKSRC} \( -name \*.orig -o -name \*~ \) -exec ${RM} -f \{} \; ${RM} -rf ${WRKSRC}/info/* @(cd ${WRKSRC}/src/../lisp; \ - ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} compile-files EMACS=${EMACS_CMD}) - @(cd ${WRKSRC}/src; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} emacs) + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} compile-files EMACS=${EMACS_CMD}) + @(cd ${WRKSRC}/src; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} emacs) @(cd ${WRKSRC}/src/../lisp; \ ${WRKSRC}/src/emacs -batch -q -f batch-byte-compile \ egg.el wnn-egg.el \ diff --git a/japanese/mozc-server/Makefile b/japanese/mozc-server/Makefile index 652125783de8..fae0b8a67abf 100644 --- a/japanese/mozc-server/Makefile +++ b/japanese/mozc-server/Makefile @@ -64,7 +64,7 @@ GYP_DEFINES= use_libprotobuf=1 \ enable_unittest=0 \ zinnia_model_file="${LOCALBASE}/share/tegaki/models/zinnia/handwriting-ja.model" BUILD_MODE= Release -BUILD_CMD= ${SETENV} ${MAKE_ENV} PATH=/bin:/usr/bin:${PATH} ${GMAKE} +BUILD_CMD= ${SETENV} ${MAKE_ENV} PATH=/bin:/usr/bin:${PATH} ${MAKE_CMD} BUILD_MOZC_CMD= cd ${BUILD_WRKSRC} && \ ${SETENV} BUILD_COMMAND="${WRKSRC}/mozcmake" \ PYTHONPATH=${WRKSRC}/third_party/gyp/local/lib/python${PYTHON_VER}/site-packages \ diff --git a/japanese/uim-anthy/Makefile b/japanese/uim-anthy/Makefile index 898d4dbd8a45..6befc9c5f534 100644 --- a/japanese/uim-anthy/Makefile +++ b/japanese/uim-anthy/Makefile @@ -31,18 +31,18 @@ EXTRA_PATCHES= ${PATCHDIR}/extra-patch-uim_Makefile.in \ ${PATCHDIR}/extra-patch-gtk2_dict_Makefile.in do-build: - (cd ${WRKSRC}/uim && ${GMAKE} libuim-anthy.la) - (cd ${WRKSRC}/uim && ${GMAKE} libuim-anthy-utf8.la) + (cd ${WRKSRC}/uim && ${MAKE_CMD} libuim-anthy.la) + (cd ${WRKSRC}/uim && ${MAKE_CMD} libuim-anthy-utf8.la) .if !defined(WITHOUT_X11) - (cd ${WRKSRC}/gtk2/dict && ${GMAKE} uim-dict-gtk) + (cd ${WRKSRC}/gtk2/dict && ${MAKE_CMD} uim-dict-gtk) .endif do-install: (cd ${WRKSRC}/uim && \ - ${GMAKE} DESTDIR=${STAGEDIR} uim_plugin_LTLIBRARIES=libuim-anthy.la install-uim_pluginLTLIBRARIES && \ - ${GMAKE} DESTDIR=${STAGEDIR} uim_plugin_LTLIBRARIES=libuim-anthy-utf8.la install-uim_pluginLTLIBRARIES) + ${MAKE_CMD} DESTDIR=${STAGEDIR} uim_plugin_LTLIBRARIES=libuim-anthy.la install-uim_pluginLTLIBRARIES && \ + ${MAKE_CMD} DESTDIR=${STAGEDIR} uim_plugin_LTLIBRARIES=libuim-anthy-utf8.la install-uim_pluginLTLIBRARIES) .if !defined(WITHOUT_X11) - (cd ${WRKSRC}/gtk2/dict && ${GMAKE} DESTDIR=${STAGEDIR} bin_PROGRAMS=uim-dict-gtk install-binPROGRAMS install-uim_dict_uiDATA) + (cd ${WRKSRC}/gtk2/dict && ${MAKE_CMD} DESTDIR=${STAGEDIR} bin_PROGRAMS=uim-dict-gtk install-binPROGRAMS install-uim_dict_uiDATA) .endif .include "${MASTERDIR}/Makefile" |