diff options
author | kiri <kiri@FreeBSD.org> | 2001-08-17 12:10:05 +0000 |
---|---|---|
committer | kiri <kiri@FreeBSD.org> | 2001-08-17 12:10:05 +0000 |
commit | c80f479ecc46237f8d6b3f9bfa9535951e6ff809 (patch) | |
tree | 8ecfae298e0686353ab2d09ad19438eca47c7762 /mail/mew/scripts | |
parent | 19a447f3c91fc58355a6b631402d0a55a06171ab (diff) | |
download | FreeBSD-ports-c80f479ecc46237f8d6b3f9bfa9535951e6ff809.zip FreeBSD-ports-c80f479ecc46237f8d6b3f9bfa9535951e6ff809.tar.gz |
Update 1.94.1 -> 1.94.2. Use bsd.emacs.mk.
Diffstat (limited to 'mail/mew/scripts')
-rw-r--r-- | mail/mew/scripts/configure | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/mew/scripts/configure b/mail/mew/scripts/configure new file mode 100644 index 0000000..f82ebf0 --- /dev/null +++ b/mail/mew/scripts/configure @@ -0,0 +1,12 @@ +#!/bin/sh + +for i in ${TARGETS}; do + if [ -f ${WRKDIR}/${i}.in ]; then + cat ${WRKDIR}/${i}.in | \ + sed \ + -e "s;%%LOCALBASE%%;${LOCALBASE};g" \ + -e "s;%%EMACS_LIBDIR%%;${EMACS_LIBDIR};g" \ + -e "s;%%EMACS_SETUPEL%%;${EMACS_SETUPEL};g" \ + > ${WRKDIR}/${i} + fi +done |