mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
61ce7c4a22
will be used to support SOCKS operation in the soon-to-be-released next version of CVSup. A tip of the hat to: Darryl Okahata, who developed the patches necessary to make the SOCKS library work with Modula-3's multithreaded I/O system.
14 lines
269 B
Bash
14 lines
269 B
Bash
#! /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
|