2002-10-02 19:08:15 +04:00
#!/bin/sh -e
#
# fixup-binconfig - /usr/bin/*-config fixups.
#
# Copyright (C) 2002 Dmitry V. Levin <ldv@altlinux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
PROG="${0##*/}"
2002-10-03 17:45:04 +04:00
WORKDIR="$(mktemp -dt "$PROG.XXXXXXXXXX")"
TMPFILE="$WORKDIR/tmp"
f_saved="$WORKDIR/sav"
f_new="$WORKDIR/new"
exit_handler()
{
RETVAL=$?
trap '' EXIT
rm -rf -- "$WORKDIR"
exit $RETVAL
}
trap exit_handler SIGHUP SIGINT SIGTERM SIGQUIT SIGPIPE EXIT
2002-10-02 19:08:15 +04:00
: ${RPM_FIXUP_SKIPLIST:=}
2002-10-03 17:45:04 +04:00
fix()
{
local fname
fname="${f#$RPM_BUILD_ROOT}"
fname="${fname#.}"
# fetch parameters
local includedir=
local libdir=
local prefix=
local exec_prefix=
sed -ne "s/^\(\([a-z_A-Z]*\)\(prefix\|dir\|path\)\)=\(.*\)\$/local \1=\4/pg" "$f" >"$TMPFILE"
# source parameters
[ ! -s "$TMPFILE" ] || . "$TMPFILE"
local saved_val=
local old_val=
local new_val=
while [ "$prefix" != "$saved_val" ]; do
saved_val="$prefix"
prefix="${prefix//\/\///}"
done
while [ "$exec_prefix" != "$saved_val" ]; do
saved_val="$exec_prefix"
exec_prefix="${exec_prefix//\/\///}"
done
while [ "$includedir" != "$saved_val" ]; do
saved_val="$includedir"
includedir="${includedir//\/\///}"
done
saved_val=
while [ "$libdir" != "$saved_val" ]; do
saved_val="$libdir"
libdir="${libdir//\/\///}"
done
# fix cflags
cat "$f" >"$f_new"
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
subst 's,\(^\|[="'\'']\| \+\)-I/usr\(/local\)\?/include\($\|["'\'']\| \+\),\1\3,g' -- "$f_new"
done
if [ "$includedir" = /usr/include ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
2002-10-03 17:45:35 +04:00
subst 's,\(^\|[="'\'']\| \+\)-I\${includedir}\($\|["'\'']\| \+\),\1\3,g' -- "$f_new"
2002-10-03 17:45:04 +04:00
done
fi
if [ "$exec_prefix" = /usr ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
2002-10-03 17:45:35 +04:00
subst 's,\(^\|[="'\'']\| \+\)-I\${exec_prefix}/include\($\|["'\'']\| \+\),\1\3,g' -- "$f_new"
2002-10-03 17:45:04 +04:00
done
fi
if [ "$prefix" = /usr ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
2002-10-03 17:45:35 +04:00
subst 's,\(^\|[="'\'']\| \+\)-I\${prefix}/include\($\|["'\'']\| \+\),\1\3,g' -- "$f_new"
2002-10-03 17:45:04 +04:00
done
fi
if ! cmp -s "$f_new" "$f"; then
2002-10-03 17:55:07 +04:00
echo "$fname:" >&2
2002-10-03 17:45:35 +04:00
diff "$f" "$f_new" >&2 ||:
2002-10-03 17:45:04 +04:00
cat "$f_new" >"$f"
fi
# fix libs
cat "$f" >"$f_new"
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
subst 's@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)/usr\(/local\)\?/lib\($\|["'\'']\| \+\)@\1\4@g' -- "$f_new"
done
if [ "$libdir" = /usr/lib ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
subst 's@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${libdir}\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new"
done
fi
if [ "$exec_prefix" = /usr ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
subst 's@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${exec_prefix}/lib\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new"
done
fi
if [ "$prefix" = /usr ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
cat "$f_new" >"$f_saved"
subst 's@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${prefix}/lib\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new"
done
fi
if ! cmp -s "$f_new" "$f"; then
2002-10-03 17:55:07 +04:00
echo "$fname:" >&2
2002-10-03 17:45:35 +04:00
diff "$f" "$f_new" >&2 ||:
2002-10-03 17:45:04 +04:00
cat "$f_new" >"$f"
fi
}
2002-10-02 19:08:15 +04:00
rc=0
for f in "$@"; do
if [ ! -f "$f" ]; then
echo "$PROG: $f: file unavailable" >&2
rc=1
continue
fi
if [ -n "$RPM_FIXUP_SKIPLIST" ]; then
for skip in $RPM_FIXUP_SKIPLIST; do
if [ -z "${f//$skip}" ]; then
continue 2
fi
done
fi
2002-10-03 17:45:04 +04:00
t="$(/usr/bin/file -b "$f")"
[ -z "${t##Bourne* shell script text*}" ] || continue
fix
2002-10-02 19:08:15 +04:00
done
exit $rc