aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorbsam <bsam@FreeBSD.org>2009-12-21 04:19:24 +0800
committerbsam <bsam@FreeBSD.org>2009-12-21 04:19:24 +0800
commit0e6ff8502a31c3e7e5131a019b9fc905acb650b8 (patch)
tree42b9f5dcdafced4edba69059ca29b8a02fc12559 /www
parent5ffc34ba901be4f5d98415be34c74452ff1aec87 (diff)
downloadfreebsd-ports-gnome-0e6ff8502a31c3e7e5131a019b9fc905acb650b8.tar.gz
freebsd-ports-gnome-0e6ff8502a31c3e7e5131a019b9fc905acb650b8.tar.zst
freebsd-ports-gnome-0e6ff8502a31c3e7e5131a019b9fc905acb650b8.zip
Changes to editors/emacs and Mk/bsd.emacs.mk were taken from
PR/137956 by Ashish SHUKLA (thanks!). [1] Those ports which define EMACS_PORT_NAME to be "emacs21" were not touched (this time). They may be converted to the new world order by removing the above mentioned assignment. Four ports were marked as BROKEN with EMACS_PORT_NAME=emacs23 (they do not compile): . lang/bigloo; . mail/wanderlust; . mail/wanderlust-devel; . www/emacs-w3m. Three ports were marked as IGNORE with EMACS_PORT_NAME=emacs23: . japanese/egg-canna (the port version is dated as of 2001, does not compile with Emacs 23 and seems it cannot be fixed); . deskutils/remember.el (was incorporated into Emacs 23); . editors/nxml (was incorporated into Emacs 23). Changes that were made after (and as a result of) exp run. For those ports: . japanese/migemo-emacs21; . japanese/migemo-emacs22 EMACS_PORT_NAME?= was changed to EMACS_PORT_NAME= to the apropriate emacs port name. PR: ports/137956 [1], ports/141369 [2] Submitted by: Ashish SHUKLA <wahjava at gmail.com> [1], bsam (me) [2] Exp-run by: miwi
Diffstat (limited to 'www')
-rw-r--r--www/emacs-w3m/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/www/emacs-w3m/Makefile b/www/emacs-w3m/Makefile
index cf2f6ab7fca6..cdd3f9a98513 100644
--- a/www/emacs-w3m/Makefile
+++ b/www/emacs-w3m/Makefile
@@ -50,7 +50,11 @@ SHIMBUN= ""
.include <bsd.port.pre.mk>
-.if (${EMACS_PORT_NAME} == "emacs22")
+.if (${EMACS_PORT_NAME} == "emacs23")
+BROKEN= this version does not support Emacs 23
+.endif
+
+.if (${EMACS_PORT_NAME} == "emacs22") || (${EMACS_PORT_NAME} == "emacs23")
FLIM_PORT= ${PORTSDIR}/editors/flim
SEMI_PORT= ${PORTSDIR}/editors/semi
INSTALL_TARGET= install install-icons
@@ -83,7 +87,7 @@ RUN_DEPENDS+= ${SEMI_COOKIE}:${SEMI_PORT} \
wvHtml:${PORTSDIR}/textproc/wv \
xlhtml:${PORTSDIR}/textproc/xlhtml
-.if ${EMACS_PORT_NAME} != "emacs22"
+.if (${EMACS_PORT_NAME} != "emacs22") && (${EMACS_PORT_NAME} != "emacs23")
RUN_DEPENDS+= ${MULE_UCS_ELISP_FILE}:${MULE_UCS_PORT}
.endif
.endif