diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-20 03:19:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-20 03:19:36 +0000 |
commit | 717ac2f177f32ef12471c95d6d3dc0850fb423b0 (patch) | |
tree | c88d1eec7a1feefd9d831e7e4838c4486a2c4240 /sys-devel/libtool/files | |
parent | Marked as stable. (diff) | |
download | historical-717ac2f177f32ef12471c95d6d3dc0850fb423b0.tar.gz historical-717ac2f177f32ef12471c95d6d3dc0850fb423b0.tar.bz2 historical-717ac2f177f32ef12471c95d6d3dc0850fb423b0.zip |
Touch up portage patch to pass libtools `make check` #70350.
Package-Manager: portage-2.0.51-r13
Diffstat (limited to 'sys-devel/libtool/files')
-rw-r--r-- | sys-devel/libtool/files/1.4.3/libtool-1.4.2-portage.patch | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/sys-devel/libtool/files/1.4.3/libtool-1.4.2-portage.patch b/sys-devel/libtool/files/1.4.3/libtool-1.4.2-portage.patch index 2da7b12c2332..8212add90a74 100644 --- a/sys-devel/libtool/files/1.4.3/libtool-1.4.2-portage.patch +++ b/sys-devel/libtool/files/1.4.3/libtool-1.4.2-portage.patch @@ -1,6 +1,6 @@ --- ltmain.in.orig Wed Apr 3 01:19:37 2002 +++ ltmain.in Sun May 26 19:50:52 2002 -@@ -3940,9 +3940,46 @@ +@@ -3940,9 +3940,50 @@ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit 1 fi @@ -8,30 +8,33 @@ + # We do not want portage's install root ($D) present. Check only for + # this if the .la is being installed. + if test "$installed" = yes && test "$D"; then -+ eval mynewdependency_lib="`echo "$libdir/$name" |sed -e "s:$D::g" -e 's://:/:g'`" ++ eval mynewdependency_lib=`echo "$libdir/$name" |sed -e "s:$D::g" -e 's://:/:g'` + else + mynewdependency_lib="$libdir/$name" + fi + # Do not add duplicates + if test "$mynewdependency_lib"; then -+ if test -z "`echo $newdependency_libs |$EGREP -e "$mynewdependency_lib"`"; then ++ my_little_ninja_foo_1=`echo $newdependency_libs |$EGREP -e "$mynewdependency_lib"` ++ if test -z "$my_little_ninja_foo_1"; then + newdependency_libs="$newdependency_libs $mynewdependency_lib" + fi + fi + ;; + *) + if test "$installed" = yes; then -+ # Rather use S=WORKDIR if our version of portage supports it. -+ # This is because some ebuild (gcc) do not use $S as buildroot. ++ # Rather use S=WORKDIR if our version of portage supports it. ++ # This is because some ebuild (gcc) do not use $S as buildroot. + if test "$PWORKDIR"; then + S="$PWORKDIR" + fi + # We do not want portage's build root ($S) present. -+ if test -n "`echo $deplib |$EGREP -e "$S"`" && test "$S"; then ++ my_little_ninja_foo_2=`echo $deplib |$EGREP -e "$S"` ++ if test -n "$my_little_ninja_foo_2" && test "$S"; then + mynewdependency_lib="" + # We do not want portage's install root ($D) present. -+ elif test -n "`echo $deplib |$EGREP -e "$D"`" && test "$D"; then -+ eval mynewdependency_lib="`echo "$deplib" |sed -e "s:$D::g" -e 's://:/:g'`" ++ my_little_ninja_foo_3=`echo $deplib |$EGREP -e "$D"` ++ elif test -n "$my_little_ninja_foo_3" && test "$D"; then ++ eval mynewdependency_lib=`echo "$deplib" |sed -e "s:$D::g" -e 's://:/:g'` + else + mynewdependency_lib="$deplib" + fi @@ -40,7 +43,8 @@ + fi + # Do not add duplicates + if test "$mynewdependency_lib"; then -+ if test -z "`echo $newdependency_libs |$EGREP -e "$mynewdependency_lib"`"; then ++ my_little_ninja_foo_4=`echo $newdependency_libs |$EGREP -e "$mynewdependency_lib"` ++ if test -z "$my_little_ninja_foo_4"; then + newdependency_libs="$newdependency_libs $mynewdependency_lib" + fi + fi @@ -55,7 +59,7 @@ esac + # Do not add duplicates + if test "$installed" = yes && test "$D"; then -+ install_libdir="`echo "$install_libdir" |sed -e "s:$D::g" -e 's://:/:g'`" ++ install_libdir=`echo "$install_libdir" |sed -e "s:$D::g" -e 's://:/:g'` + fi $echo > $output "\ # $outputname - a libtool library file |