From 80bf54119fab6f2981b947b9288a0d4dd760080a Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Mon, 23 Sep 2002 11:28:55 +0000 Subject: Since WITH_{CANNA,FREEWNN,WNN6,SJ3} are always defined, there is no need to check if they are defined. Remove the checks and correct conditional PLIST_SUB+= assignment. Submitted by: bento --- japanese/emacs-emcws/Makefile | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) (limited to 'japanese/emacs-emcws/Makefile') diff --git a/japanese/emacs-emcws/Makefile b/japanese/emacs-emcws/Makefile index 3b3091b752c9..a9eca425c880 100644 --- a/japanese/emacs-emcws/Makefile +++ b/japanese/emacs-emcws/Makefile @@ -36,40 +36,37 @@ WITH_CANNA?= YES WITH_SJ3?= NO CONFIGURE_TARGET= ${MACHINE_ARCH}--freebsd + .if !defined(NO_X11) CONFIGURE_ARGS= --with-x-toolkit --with-pop USE_XLIB= YES .else CONFIGURE_ARGS= --with-x=no --with-pop .endif -.if defined(WITH_WNN6) + .if (${WITH_WNN6} == "yes" || ${WITH_WNN6} == "YES") CONFIGURE_ARGS+=--with-wnn --with-wnn-includes=${LOCALBASE}/include/wnn6/wnn \ --with-wnn-libraries=${LOCALBASE}/lib/libwnn6.so LIB_DEPENDS+= wnn6.1:${PORTSDIR}/japanese/Wnn6-lib .endif -.endif -.if defined(WITH_FREEWNN) + .if (${WITH_FREEWNN} == "yes" || ${WITH_FREEWNN} == "YES") CONFIGURE_ARGS+=--with-wnn --with-wnn-includes=${LOCALBASE}/include/wnn \ --with-wnn-libraries=${LOCALBASE}/lib/libwnn.so LIB_DEPENDS+= wnn.0:${PORTSDIR}/japanese/FreeWnn-lib .endif -.endif -.if defined(WITH_CANNA) + .if (${WITH_CANNA} == "yes" || ${WITH_CANNA} == "YES") CONFIGURE_ARGS+= --with-canna \ --with-canna-includes=${LOCALBASE}/include \ --with-canna-libraries=${LOCALBASE}/lib LIB_DEPENDS+= canna.1:${PORTSDIR}/japanese/Canna .endif -.endif -.if defined(WITH_SJ3) + .if (${WITH_SJ3} == "yes" || ${WITH_SJ3} == "YES") CONFIGURE_ARGS+= --with-sj3 BUILD_DEPENDS+= sj3serv:${PORTSDIR}/japanese/sj3 .endif -.endif DOC_FILE= DOC-EMCWS-${EMACS_VER}.1 EMCWS_ELCS= busyu.el \ @@ -95,7 +92,6 @@ EMCWS_ELCS= busyu.el \ wnn-client.el \ wnn-egg.el -.if defined(WITH_WNN6) || defined(WITH_FREEWNN) .if (${WITH_WNN6} == "yes" || ${WITH_WNN6} == "YES") || (${WITH_FREEWNN} == "yes" || ${WITH_FREEWNN} == "YES") EMCWS_ELCS+= egg.elc \ wnn-egg.elc @@ -103,16 +99,14 @@ PLIST_SUB+= WITH_WNN="" .else PLIST_SUB+= WITH_WNN="@comment " .endif -.endif -.if defined(WITH_CANNA) + .if (${WITH_CANNA} == "yes" || ${WITH_CANNA} == "YES") EMCWS_ELCS+= canna.elc PLIST_SUB+= WITH_CANNA="" .else PLIST_SUB+= WITH_CANNA="@comment " .endif -.endif -.if defined(WITH_SJ3) + .if (${WITH_SJ3} == "yes" || ${WITH_SJ3} == "YES") EMCWS_ELCS+= sj3-client.elc \ sj3-egg.elc @@ -120,7 +114,6 @@ PLIST_SUB+= WITH_SJ3="" .else PLIST_SUB+= WITH_SJ3="@comment " .endif -.endif MULE_PATCHED_ELS= help.el help.elc \ international/ccl.el international/mule-cmds.el \ -- cgit v1.2.3