diff options
author | shige <shige@FreeBSD.org> | 2000-01-14 22:59:42 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 2000-01-14 22:59:42 +0800 |
commit | ba11bd64ca62b5f2e416b3a016531022e20800c8 (patch) | |
tree | c982dd25abfef3814d694a6190da335380f93ce6 /japanese | |
parent | a8a9100fffe4a54cdc4812d2d72da3919258ff02 (diff) | |
download | freebsd-ports-gnome-ba11bd64ca62b5f2e416b3a016531022e20800c8.tar.gz freebsd-ports-gnome-ba11bd64ca62b5f2e416b3a016531022e20800c8.tar.zst freebsd-ports-gnome-ba11bd64ca62b5f2e416b3a016531022e20800c8.zip |
Use ${PORTSDIR} instead of ${.CURDIR}/../.. in (BUILD|RUN)_DEPENDS
variables and other variables.
Because there is no relation of master/slave between this port and
editors/emacs20-dl. ${.CURDIR}/../.. should not be used.
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/emacs20-dl-canna/Makefile | 2 | ||||
-rw-r--r-- | japanese/emacs20-dl-wnn6/Makefile | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/japanese/emacs20-dl-canna/Makefile b/japanese/emacs20-dl-canna/Makefile index 8ecffd513f8f..db4d01c579a2 100644 --- a/japanese/emacs20-dl-canna/Makefile +++ b/japanese/emacs20-dl-canna/Makefile @@ -32,7 +32,7 @@ PLIST_SUB= EMACS_VER=${EMACS_VER} EMACS_ARCH=${MACHINE_ARCH}--freebsd \ # ports variables EMACS_VER= 20.5 -EMACSDL_DIR= ${.CURDIR}/../../editors/emacs20-dl +EMACSDL_DIR= ${PORTSDIR}/editors/emacs20-dl EMACSDL_SRCDIR= ${WRKDIRPREFIX}${EMACSDL_DIR}/work/emacs-${EMACS_VER}/src APEL_DEPENDS= ${PREFIX}/share/emacs/${EMACS_VER}/site-lisp/emu/emu.el LISPDIR= share/emacs/site-lisp diff --git a/japanese/emacs20-dl-wnn6/Makefile b/japanese/emacs20-dl-wnn6/Makefile index fa0bc0fad862..39bb0dd1878a 100644 --- a/japanese/emacs20-dl-wnn6/Makefile +++ b/japanese/emacs20-dl-wnn6/Makefile @@ -23,14 +23,15 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-wnn6 \ --with-wnn-includes=${PREFIX}/include/wnn \ --with-wnn-libraries=${PREFIX}/lib \ - --with-emacs-src=${WRKDIRPREFIX}${EMACSDL_DIR}/work/emacs-${EMACS_VER} + --with-emacs-src=${EMACSDL_SRCDIR} CONFIGURE_ENV= EMACS=${PREFIX}/bin/emacs-dl-${EMACS_VER} PLIST_SUB= EMACS_VER=${EMACS_VER} EMACS_ARCH=${MACHINE_ARCH}--freebsd \ DOCDIR=${DOCDIR} DOCDIR= share/doc/emacs20-dl-wnn6 EMACS_VER= 20.5 -EMACSDL_DIR= ${.CURDIR}/../../editors/emacs20-dl +EMACSDL_DIR= ${PORTSDIR}/editors/emacs20-dl +EMACSDL_SRCDIR= ${WRKDIRPREFIX}${EMACSDL_DIR}/work/emacs-${EMACS_VER} # hack to allow parallel build to work .if defined(PARALLEL_PACKAGE_BUILD) BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake \ |