diff options
author | tijl <tijl@FreeBSD.org> | 2013-09-02 21:26:34 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2013-09-02 21:26:34 +0800 |
commit | ca2a2263a744b7c6f6f551ba68906f43afe04522 (patch) | |
tree | 724d013a376d218986fefc586ed681b8c219eeb7 /japanese/canna-server | |
parent | d44d174b995274dd9e8ddc49b959e3790c47ce71 (diff) | |
download | freebsd-ports-gnome-ca2a2263a744b7c6f6f551ba68906f43afe04522.tar.gz freebsd-ports-gnome-ca2a2263a744b7c6f6f551ba68906f43afe04522.tar.zst freebsd-ports-gnome-ca2a2263a744b7c6f6f551ba68906f43afe04522.zip |
Two imake related changes:
1) Move -a from XMKMF command variable to a new XMKMF_ARGS variable.
For ports that don't need -a introduce USES=imake:notall.
This way ports no longer have to redefine XMKMF.
2) xmkmf -a runs imake with the flags in IMAKECPPFLAGS as extra arguments
to set CPP, CC and CXX. This creates the top Makefile, and then xmkmf
runs make Makefiles. This Makefiles target runs imake for each
subdirectory but these imake invocations did not have the flags from
IMAKECPPFLAGS so the resulting makefiles used the wrong C preprocessor
when clang is used (/usr/bin/cpp instead of /usr/local/bin/tradcpp).
Instead of letting xmkmf pass IMAKECPPFLAGS from the environment to
imake let imake handle IMAKECPPFLAGS itself just like it handles
IMAKEINCLUDE.
This exposed configure errors in x11-clocks/mouseclock and x11-wm/fvwm.
Approved by: portmgr (bapt)
Diffstat (limited to 'japanese/canna-server')
-rw-r--r-- | japanese/canna-server/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/japanese/canna-server/Makefile b/japanese/canna-server/Makefile index 87c0fd468182..6279a5b369eb 100644 --- a/japanese/canna-server/Makefile +++ b/japanese/canna-server/Makefile @@ -19,7 +19,6 @@ USES= imake USE_GCC= any USE_RC_SUBR= canna USE_BZIP2= yes -ALL_TARGET= canna INSTALL_TARGET= instserver instclient PLIST_SUB= METAFILE="${METAFILE}" \ MTREE_CMD="${MTREE_CMD}" @@ -46,9 +45,6 @@ MLINKS= uilib.3 XKanjiControl.3 uilib.3 XLookupKanjiString.3 uilib.3 \ METAFILE= ${DATADIR_REL}/canna-server-dic.meta -post-configure: - @cd ${CONFIGURE_WRKSRC} && ${SETENV} ${MAKE_ENV} ${XMKMF} - post-install: @cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man ${MTREE_CMD} -cdink uname,gname,mode,nochange \ |