diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-07-19 08:07:47 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-07-19 08:07:47 +0000 |
commit | 04df07dbe689c519154ffc11ff55a56346121eb7 (patch) | |
tree | 44903c2b5adad236c68805cf0f1b0150cf83da35 /editors/flim | |
parent | 4d35b2c0b246910ad662b2608a35ca104135faa7 (diff) | |
download | ports-04df07dbe689c519154ffc11ff55a56346121eb7.tar.gz ports-04df07dbe689c519154ffc11ff55a56346121eb7.zip |
Fix broken apel-dependency in the case of xemacs and xemacs20.
Notes
Notes:
svn path=/head/; revision=30833
Diffstat (limited to 'editors/flim')
-rw-r--r-- | editors/flim/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/flim/Makefile b/editors/flim/Makefile index 2265d76451a0..61cc10fc34d6 100644 --- a/editors/flim/Makefile +++ b/editors/flim/Makefile @@ -46,6 +46,10 @@ PLIST_SUB+= FLIMDOCDIR=${FLIMDOCDIR} FLIM_SETUPEL=${FLIM_SETUPEL} \ .if defined(EMACS_PACKAGESDIR) BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_PACKAGESDIR}/lisp/apel/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME} RUN_DEPENDS+= ${LOCALBASE}/${EMACS_PACKAGESDIR}/lisp/apel/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME} +.elif (${EMACS_PORT_NAME} == "xemacs") || (${EMACS_PORT_NAME} == "xemacs20") +# depends on apel (case of xemacs-20.x or former) +BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME} +RUN_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME} .else # depends on apel (case of other emacsen etc...) BUILD_DEPENDS+= ${LOCALBASE}/${EMACS_LIBDIR_WITH_VER}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT_NAME} |