mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-13 23:36:08 +00:00
9aef92e855
the new "modula-3-lib" port. The split allows one to save a lot of disk space by installing only the shared libraries needed for executing programs. The full "modula-3" port is needed only if you want to compile programs as well.
28 lines
634 B
Bash
28 lines
634 B
Bash
#! /bin/sh
|
|
#
|
|
# $Id: fix_pathnames,v 1.2 1996/09/10 05:25:10 jdp Exp $
|
|
|
|
umask 022
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "Usage: $0 oldpath newpath" >&2
|
|
exit 1
|
|
fi
|
|
|
|
oldpath=$1
|
|
newpath=$2
|
|
pkgdir=lib/m3/pkg
|
|
|
|
# Fix absolute pathnames in files so that they reference the actual
|
|
# installation directory, instead of the temporary directory we have
|
|
# been using.
|
|
|
|
cd ${newpath}/${pkgdir}
|
|
for i in `cd ${oldpath}/${pkgdir}; \
|
|
find . -type f \( -name .M3IMPTAB -o -name FreeBSD2 \)`; do
|
|
test -f ${i}.bak || cp -p ${i} ${i}.bak
|
|
rm -f ${i}
|
|
sed -e "s|/[^ ]*/work/installed/|${newpath}/|g" ${i}.bak >${i} && \
|
|
rm -f ${i}.bak
|
|
done
|