rpm-build/scripts/fixup-binconfig.in

168 lines
4.4 KiB
Plaintext
Raw Normal View History

2002-10-05 02:45:05 +04:00
#!/bin/sh -ef
#
# fixup-binconfig - /usr/bin/*-config fixups.
#
2011-09-22 00:43:46 +04:00
# Copyright (C) 2002,2004,2006,2008 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
#
2003-11-09 19:47:45 +03:00
. @RPMCONFIGDIR@/functions
ValidateBuildRoot
2011-09-22 00:43:46 +04:00
. @RPMCONFIGDIR@/tmpdir.sh
TMPFILE="$tmpdir/tmp"
f_saved="$tmpdir/sav"
f_new="$tmpdir/new"
2002-10-03 17:45:04 +04:00
: ${RPM_FIXUP_SKIPLIST:=}
2002-10-03 17:45:04 +04:00
fix()
{
# fetch parameters
local includedir=
local libdir=
local prefix=
local exec_prefix=
2002-11-05 21:49:38 +03:00
sed -ne "s/^\(\([a-z_A-Z]*\)\(prefix\|dir\|path\)\)=\(.*\)\$/local \1=\4/pg" "$f" >"$TMPFILE" || return 1
2002-10-03 17:45:04 +04:00
# source parameters
2002-11-05 21:49:38 +03:00
[ ! -s "$TMPFILE" ] || . "$TMPFILE" || return 1
2002-10-03 17:45:04 +04:00
prefix="$(printf %s "$prefix" |tr -s /)"
exec_prefix="$(printf %s "$exec_prefix" |tr -s /)"
includedir="$(printf %s "$includedir" |tr -s /)"
libdir="$(printf %s "$libdir" |tr -s /)"
2002-10-03 17:45:04 +04:00
# fix cflags
2002-11-05 21:49:38 +03:00
cat "$f" >"$f_new" &&
>"$f_saved" ||
return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s,\(^\|[="'\'']\| \+\)-I/usr\(/local\)\?/include\($\|["'\'']\| \+\),\1\3,g' -- "$f_new" ||
return 1
2002-10-03 17:45:04 +04:00
done
if [ "$includedir" = /usr/include ]; then
2002-11-05 21:49:38 +03:00
>"$f_saved" || return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s,\(^\|[="'\'']\| \+\)-I\${includedir}\($\|["'\'']\| \+\),\1\2,g' -- "$f_new" ||
return 1
2002-10-03 17:45:04 +04:00
done
fi
if [ "$exec_prefix" = /usr ]; then
2002-11-05 21:49:38 +03:00
>"$f_saved" || return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s,\(^\|[="'\'']\| \+\)-I\${exec_prefix}/include\($\|["'\'']\| \+\),\1\2,g' -- "$f_new" ||
return 1
2002-10-03 17:45:04 +04:00
done
fi
if [ "$prefix" = /usr ]; then
2002-11-05 21:49:38 +03:00
>"$f_saved" || return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s,\(^\|[="'\'']\| \+\)-I\${prefix}/include\($\|["'\'']\| \+\),\1\2,g' -- "$f_new" ||
return 1
2002-10-03 17:45:04 +04:00
done
fi
if ! cmp -s "$f_new" "$f"; then
2003-11-09 19:47:45 +03:00
echo "$fname:"
diff "$f" "$f_new" ||:
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f" || return 1
2002-10-03 17:45:04 +04:00
fi
# fix libs
2002-11-05 21:49:38 +03:00
cat "$f" >"$f_new" &&
>"$f_saved" ||
return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)/usr\(/local\)\?/'"$RPM_LIB"'\($\|["'\'']\| \+\)@\1\4@g' -- "$f_new" &&
subst '/if test /n;s@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\('$RPM_BUILD_ROOT'\|'$RPM_BUILD_DIR'\|/usr/lib[^/]*/gcc-lib\)["'\'' ]*\($\|["'\'']\| \+\)@\1\4@g' -- "$f_new" ||
2002-11-05 21:49:38 +03:00
return 1
2002-10-03 17:45:04 +04:00
done
if [ "$libdir" = "$RPM_LIBDIR" ]; then
2002-11-05 21:49:38 +03:00
>"$f_saved" || return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${libdir}\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new" ||
return 1
2002-10-03 17:45:04 +04:00
done
fi
if [ "$exec_prefix" = /usr ]; then
2002-11-05 21:49:38 +03:00
>"$f_saved" || return 1
2002-10-03 17:45:04 +04:00
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${exec_prefix}/'"$RPM_LIB"'\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new" ||
2002-11-05 21:49:38 +03:00
return 1
2002-10-03 17:45:04 +04:00
done
fi
if [ "$prefix" = /usr ]; then
>"$f_saved"
while ! cmp -s "$f_new" "$f_saved"; do
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f_saved" &&
subst '/if test /n;s@\(^\|[="'\'']\| \+\)\(-L\|-Wl,-rpath,\)\${prefix}/'"$RPM_LIB"'\($\|["'\'']\| \+\)@\1\3@g' -- "$f_new" ||
2002-11-05 21:49:38 +03:00
return 1
2002-10-03 17:45:04 +04:00
done
fi
if ! cmp -s "$f_new" "$f"; then
2003-11-09 19:47:45 +03:00
echo "$fname:"
diff "$f" "$f_new" ||:
2002-11-05 21:49:38 +03:00
cat "$f_new" >"$f" || return 1
2002-10-03 17:45:04 +04:00
fi
}
rc=0
for f in "$@"; do
if [ ! -f "$f" ]; then
2003-11-09 19:47:45 +03:00
Info "$f: file unavailable"
rc=1
continue
fi
2002-12-30 02:33:01 +03:00
fname="${f#$RPM_BUILD_ROOT}"
fname="${fname#.}"
if [ -n "$RPM_FIXUP_SKIPLIST" ]; then
for skip in $RPM_FIXUP_SKIPLIST; do
if [ -z "${fname##$skip}" ]; then
continue 2
fi
done
fi
t="$(file -b "$f")" || continue
2002-10-03 17:45:04 +04:00
[ -z "${t##Bourne* shell script text*}" ] || continue
fix
done
exit $rc