1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/news/slurp/scripts/configure

24 lines
445 B
Plaintext
Raw Normal View History

#!/bin/sh
#
1999-08-30 14:33:04 +00:00
# $FreeBSD$
#
TMPFILE=${TMPDIR:-/tmp}/tmp.slurp.sed.$$
trap 'rm -f ${TMPFILE}' 1 2 13 15
echo "s!/usr/lib/news!${PREFIX}/news/lib!" > ${TMPFILE}
if [ -d /var/news ]
then
echo 's!/var/spool!/var!' >> ${TMPFILE}
fi
sed -f ${TMPFILE} < ${WRKSRC}/conf.h > ${WRKSRC}/conf.h.tmp
mv ${WRKSRC}/conf.h.tmp ${WRKSRC}/conf.h
rm -f ${TMPFILE}
rm -f ${WRKDIR}/syslog.h
cp ${FILESDIR}/dbz.* ${WRKSRC}
cp ${FILESDIR}/siteexclude.c ${WRKSRC}