mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
a0d6500075
Bitmap-mule has following modules: - bitmap.el: kernel of bitmap-mule - po.el: tiny BDF font editor - smiley-mule.el: smiley-mark encoder/decoder
14 lines
320 B
Bash
14 lines
320 B
Bash
#!/bin/sh
|
|
|
|
for i in ${TARGETS}
|
|
do
|
|
if [ -f ${WRKDIR}/${i}.in ]; then
|
|
cat ${WRKDIR}/${i}.in | /usr/bin/sed \
|
|
-e "s;@@PREFIX@@;${PREFIX};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" \
|
|
> ${WRKDIR}/${i}
|
|
fi
|
|
done
|