summaryrefslogtreecommitdiff
path: root/editors/bitmap/scripts/configure
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2001-12-11 13:42:09 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2001-12-11 13:42:09 +0000
commitffb8c4d93977f46873865934d3c1c42a3b97feac (patch)
tree77fdeb01220f43099bb7933891928dbfba282278 /editors/bitmap/scripts/configure
parentBump PORTREVISION for this recent change: (diff)
Update to 8.4.p200109201221.
Apply new master/slave scheme. Update master port (editors/bitmap) for emacs21. Update slave ports (editors/bitmap-mule and editors/bitmap-emacs20) to stub ports. Install el/elc files to version specific site-lisp directory. Change some style.
Notes
Notes: svn path=/head/; revision=51354
Diffstat (limited to '')
-rw-r--r--editors/bitmap/scripts/configure15
1 files changed, 15 insertions, 0 deletions
diff --git a/editors/bitmap/scripts/configure b/editors/bitmap/scripts/configure
new file mode 100644
index 000000000000..ffe214ba26f5
--- /dev/null
+++ b/editors/bitmap/scripts/configure
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+for i in ${TARGETS}
+do
+ if [ -f ${WRKDIR}/${i}.in ]; then
+ cat ${WRKDIR}/${i}.in | /usr/bin/sed \
+ -e "s;@@LOCALBASE@@;${LOCALBASE};g" \
+ -e "s;@@EMACS_LIBDIR@@;${EMACS_LIBDIR};g" \
+ -e "s;@@EMACS_VER@@;${EMACS_VER};g" \
+ -e "s;@@EMACS_LIBDIR_WITH_VER@@;${EMACS_LIBDIR_WITH_VER};g" \
+ -e "s;@@EMACS_SITE_LISPDIR@@;${EMACS_SITE_LISPDIR};g" \
+ -e "s;@@EMACS_VERSION_SITE_LISPDIR@@;${EMACS_VERSION_SITE_LISPDIR};g" \
+ > ${WRKDIR}/${i}
+ fi
+done