root/extras/contrib/change_prefix.sh
| Revision f90b0e657d7051b90691799aad48080b536c24d6, 2.1 kB (checked in by Jean-Baptiste Kempf <jb@videolan.org>, 1 year ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | # *************************************************************************** |
| 3 | # change_prefix.sh : allow to transfer a contrib dir |
| 4 | # *************************************************************************** |
| 5 | # Copyright (C) 2003 the VideoLAN team |
| 6 | # $Id$ |
| 7 | # |
| 8 | # Authors: Christophe Massiot <massiot@via.ecp.fr> |
| 9 | # |
| 10 | # This program is free software; you can redistribute it and/or modify |
| 11 | # it under the terms of the GNU General Public License as published by |
| 12 | # the Free Software Foundation; either version 2 of the License, or |
| 13 | # (at your option) any later version. |
| 14 | # |
| 15 | # This program is distributed in the hope that it will be useful, |
| 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | # GNU General Public License for more details. |
| 19 | # |
| 20 | # You should have received a copy of the GNU General Public License |
| 21 | # along with this program; if not, write to the Free Software |
| 22 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
| 23 | # *************************************************************************** |
| 24 | |
| 25 | usage="Usage: $0 <directory> <prefix> <new_prefix>" |
| 26 | |
| 27 | LANG=C |
| 28 | export LANG |
| 29 | |
| 30 | if test .$1 = .-h -o .$1 = .--help -o $# != 3; then |
| 31 | echo $usage |
| 32 | exit 1 |
| 33 | fi |
| 34 | |
| 35 | top_dir=`cd $1; pwd` |
| 36 | prefix=$2 |
| 37 | new_prefix2=$3 |
| 38 | new_prefix=/$new_prefix2 |
| 39 | |
| 40 | if test -z $prefix -o -z $new_prefix; then |
| 41 | echo $usage |
| 42 | exit 1 |
| 43 | fi |
| 44 | |
| 45 | cd $top_dir |
| 46 | pwd |
| 47 | files=`find . -type f` |
| 48 | for file in $files; do |
| 49 | if test ".`file $file | grep Mach-O`" != "." ; then |
| 50 | libs=`otool -L $file 2>/dev/null | grep $prefix | cut -d\ -f 1` |
| 51 | echo $libs |
| 52 | for i in "" $libs; do |
| 53 | echo $i |
| 54 | if ! test -z $i; then |
| 55 | install_name_tool -change $i \ |
| 56 | `echo $i | sed -e "s,$prefix,$new_prefix,"` \ |
| 57 | $file |
| 58 | fi |
| 59 | done |
| 60 | elif test ".`file $file | grep \"text\|shell\"`" != "." ; then |
| 61 | |
| 62 | sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp |
| 63 | mv -f $file.tmp $file |
| 64 | fi |
| 65 | done |
| 66 | |
| 67 | cd $new_prefix2/lib/ |
| 68 | pwd |
| 69 | files=` ls -1 *.la` |
| 70 | for file in $files; do |
| 71 | echo $file |
| 72 | sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp |
| 73 | mv -f $file.tmp $file |
| 74 | done |
| 75 |
Note: See TracBrowser for help on using the browser.
