head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2003.07.31.17.37.21;	author shige;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Add elisp/emacsen ports in the ports tree @@ 2003/07/31
@
text
@#!/bin/sh
# $FreeBSD$

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
@
