diff options
author | shige <shige@FreeBSD.org> | 1999-10-21 19:35:16 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 1999-10-21 19:35:16 +0800 |
commit | 092c4e81b49dcd63d3e839a36a0c25da95200f8c (patch) | |
tree | 6588c1b85fe4e4a18f90d905b7aa7434a3fbd8d9 | |
parent | dd0df248b0bc1d45c10bbab297a7ac6d69b51475 (diff) | |
download | freebsd-ports-gnome-092c4e81b49dcd63d3e839a36a0c25da95200f8c.tar.gz freebsd-ports-gnome-092c4e81b49dcd63d3e839a36a0c25da95200f8c.tar.zst freebsd-ports-gnome-092c4e81b49dcd63d3e839a36a0c25da95200f8c.zip |
Fix too bad dependency.
before: ${PREFIX}/lib/xemacs/site-packages/../xemacs-packages
(If site-packages directory does not exist, this dependency is broken.)
new: ${PREFIX}/lib/xemacs/xemacs-packages
-rw-r--r-- | editors/apel-emacs/Makefile | 4 | ||||
-rw-r--r-- | editors/apel-xemacs21-mule/Makefile | 3 | ||||
-rw-r--r-- | editors/apel/Makefile | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/editors/apel-emacs/Makefile b/editors/apel-emacs/Makefile index af616af4fbdb..fa31c17b07ab 100644 --- a/editors/apel-emacs/Makefile +++ b/editors/apel-emacs/Makefile @@ -53,8 +53,8 @@ BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDI RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT} .endif .if defined(EMACS_PACKAGESDIR) -BUILD_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages -RUN_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages .endif SCRIPTS_ENV+= EMACS_LIBDIR=${EMACS_LIBDIR} EMACS_VER=${EMACS_VER} \ diff --git a/editors/apel-xemacs21-mule/Makefile b/editors/apel-xemacs21-mule/Makefile index 23e01638bc95..c2ccc7427535 100644 --- a/editors/apel-xemacs21-mule/Makefile +++ b/editors/apel-xemacs21-mule/Makefile @@ -17,7 +17,8 @@ MASTERDIR= ${.CURDIR}/../../editors/apel-emacs EMACS_NAME= xemacs EMACS_PORT= xemacs-mule EMACS_VER= 21.1.6 -EMACS_PACKAGESDIR= lib/${EMACS_NAME}/site-packages +EMACS_LIBDIR= lib/${EMACS_NAME} +EMACS_PACKAGESDIR= ${EMACS_LIBDIR}/site-packages # packages-subdirectories which this port requires EMACS_PACKAGES_SUBDIRS= lisp pkginfo diff --git a/editors/apel/Makefile b/editors/apel/Makefile index af616af4fbdb..fa31c17b07ab 100644 --- a/editors/apel/Makefile +++ b/editors/apel/Makefile @@ -53,8 +53,8 @@ BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDI RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT} .endif .if defined(EMACS_PACKAGESDIR) -BUILD_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages -RUN_DEPENDS+= ${PREFIX}/${EMACS_PACKAGESDIR}/../xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages +RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/xemacs-packages/lisp/xemacs-base/advice.el:${PORTSDIR}/editors/xemacs-sumo-packages .endif SCRIPTS_ENV+= EMACS_LIBDIR=${EMACS_LIBDIR} EMACS_VER=${EMACS_VER} \ |