summaryrefslogtreecommitdiff
path: root/lang/modula-3-socks/scripts/configure
blob: 0016fb236bb05f2e999b19d705b34dde0fc41d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

files="SOCKS-SOURCE/h/socksdef.h \
  m3socks/m3socks.sh \
  m3socks/m3socks.1 \
  m3socks/m3socks.conf.5"

cd ${WRKSRC}
for i in ${files}; do
  test -f $i.bak || cp $i $i.bak
  chmod +w $i
  sed "s|/usr/local/|${PREFIX}/|g" $i.bak > $i && rm -f $i.bak
done