diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-12-03 17:27:41 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-12-03 17:27:41 +0000 |
commit | b1650ff64b2d478564b5af18b10dbb1f5ac1d1cf (patch) | |
tree | 925b6173c65eb2929941e8ecef2f57d94c2b9f67 /www/emacs-w3m/Makefile | |
parent | upgrade to 1.6.5 (diff) |
New master/slave scheme for emacs-w3m ports.
Update master port to emacs21.
Update slave ports to stub port:
emacs-w3m-emacs20, emacs-w3m-xemacs21-mule
Install el/elc files to version specific site-lisp directory (Gnu Emacsen).
Notes
Notes:
svn path=/head/; revision=50981
Diffstat (limited to 'www/emacs-w3m/Makefile')
-rw-r--r-- | www/emacs-w3m/Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/www/emacs-w3m/Makefile b/www/emacs-w3m/Makefile index 8d25ab688ca3..9e7f311e439b 100644 --- a/www/emacs-w3m/Makefile +++ b/www/emacs-w3m/Makefile @@ -14,10 +14,18 @@ DISTNAME= w3m_el-${PORTVERSION} MAINTAINER= nobutaka@FreeBSD.org -EMACS_PORT_NAME?= emacs20 +PORTCLASS?= master -CONFIGURE_ARGS?= --with-emacs=${EMACS_CMD} -LISPDIR?= ${EMACS_LIBDIR}/site-lisp/w3m +.if (${PORTCLASS} == "master") +EMACS_PORT_NAME?= emacs21 +DEPPORT_SUFFIX= +.else +DEPPORT_SUFFIX= -${EMACS_PORT_NAME} +.endif + +CONFIGURE_ARGS?= --with-emacs=${EMACS_CMD} \ + --with-lispdir=${LOCALBASE}/${LISPDIR} +LISPDIR?= ${EMACS_VERSION_SITE_LISPDIR}/w3m ETCDIR?= share/w3m PKGINFODIR?= "@comment " @@ -47,7 +55,7 @@ SEMI_FILE= ${LOCALBASE}/${EMACS_PACKAGESDIR}/lisp/semi/mime-setup.el .else XEMACS_ONLY?= "@comment " EMACS_ONLY?= "" -SEMI_FILE= ${LOCALBASE}/${EMACS_LIBDIR}/site-lisp/semi/mime-setup.el +SEMI_FILE= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/semi/mime-setup.el .endif .if defined(WITH_SHIMBUN) @@ -63,8 +71,8 @@ SHIMBUN= "@comment " .endif .if defined(HAVE_SEMI) -BUILD_DEPENDS+= ${SEMI_FILE}:${PORTSDIR}/editors/semi-${EMACS_PORT_NAME}-current -RUN_DEPENDS+= ${SEMI_FILE}:${PORTSDIR}/editors/semi-${EMACS_PORT_NAME}-current +BUILD_DEPENDS+= ${SEMI_FILE}:${PORTSDIR}/editors/semi${DEPPORT_SUFFIX} +RUN_DEPENDS+= ${SEMI_FILE}:${PORTSDIR}/editors/semi${DEPPORT_SUFFIX} .endif .if !defined(HAVE_SEMI) |