diff options
author | shige <shige@FreeBSD.org> | 2001-10-25 03:20:55 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 2001-10-25 03:20:55 +0800 |
commit | 46c72783a920608e88177c59af7e58c3c3d1f945 (patch) | |
tree | c14337fd61debe8414522384d5b5d614eb0daf64 /editors/flim113 | |
parent | 829f9dc9105d86ed52d7cc2fddab791a5b16dcc0 (diff) | |
download | freebsd-ports-gnome-46c72783a920608e88177c59af7e58c3c3d1f945.tar.gz freebsd-ports-gnome-46c72783a920608e88177c59af7e58c3c3d1f945.tar.zst freebsd-ports-gnome-46c72783a920608e88177c59af7e58c3c3d1f945.zip |
Specify PREFIX, LISPDIR, and VERSION_SPECIFIC_LISPDIR cleary
when port building.
Diffstat (limited to 'editors/flim113')
-rw-r--r-- | editors/flim113/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/editors/flim113/Makefile b/editors/flim113/Makefile index 2647851569e7..309df21669e2 100644 --- a/editors/flim113/Makefile +++ b/editors/flim113/Makefile @@ -27,6 +27,9 @@ FLIM_SETUPEL= flim-setupel.el # document install directory by install-doc target FLIMDOCDIR?= share/doc/flim FLIM_COOKIE= flim-${EMACS_PORT_NAME}-${FLIM_TRUNK}.FreeBSD-packages +# flim lispdir +FLIM_LISPDIR?= ${LOCALBASE}/${EMACS_SITE_LISPDIR} +FLIM_VERSION_SPECIFIC_LISPDIR?= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR} .if (${PORTCLASS} == "master") # for emacs @@ -41,6 +44,9 @@ ALL_TARGET?= elc SCRIPTS_ENV+= TARGETS="${FLIM_SETUPEL}" PLIST_SUB+= FLIMDOCDIR=${FLIMDOCDIR} FLIM_SETUPEL=${FLIM_SETUPEL} \ FLIM_COOKIE=${FLIM_COOKIE} +MAKE_ARGS+= PREFIX="${LOCALBASE}" \ + LISPDIR="${FLIM_LISPDIR}" \ + VERSION_SPECIFIC_LISPDIR="${FLIM_VERSION_SPECIFIC_LISPDIR}" .include <bsd.port.pre.mk> |