diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-09-24 22:32:14 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-09-24 22:32:14 +0000 |
commit | 4e07a45aa54eb1f2c000be6ccca44c352bfaaa90 (patch) | |
tree | c768571ab9ab40fd7267ddeed03fe2ad98467138 /media-gfx/gimp/files | |
parent | Cleanup the build a bit. Remove the hack, and rather add a proper fix to lib... (diff) | |
download | gentoo-2-4e07a45aa54eb1f2c000be6ccca44c352bfaaa90.tar.gz gentoo-2-4e07a45aa54eb1f2c000be6ccca44c352bfaaa90.tar.bz2 gentoo-2-4e07a45aa54eb1f2c000be6ccca44c352bfaaa90.zip |
Cleanup the build a bit. Remove the hack, and rather add a proper fix to libtool.
Diffstat (limited to 'media-gfx/gimp/files')
-rw-r--r-- | media-gfx/gimp/files/digest-gimp-1.3.20-r1 | 1 | ||||
-rw-r--r-- | media-gfx/gimp/files/ltmain_sh-1.5.0-fix-relink.patch | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/media-gfx/gimp/files/digest-gimp-1.3.20-r1 b/media-gfx/gimp/files/digest-gimp-1.3.20-r1 new file mode 100644 index 000000000000..ff8364b2ed67 --- /dev/null +++ b/media-gfx/gimp/files/digest-gimp-1.3.20-r1 @@ -0,0 +1 @@ +MD5 e77d4b2948b57eb0739cde0f76aea57b gimp-1.3.20.tar.bz2 11380508 diff --git a/media-gfx/gimp/files/ltmain_sh-1.5.0-fix-relink.patch b/media-gfx/gimp/files/ltmain_sh-1.5.0-fix-relink.patch new file mode 100644 index 000000000000..28631587c963 --- /dev/null +++ b/media-gfx/gimp/files/ltmain_sh-1.5.0-fix-relink.patch @@ -0,0 +1,51 @@ +--- ltmain.sh.norelinkfix 2003-09-24 18:18:14.961005184 +0200 ++++ ltmain.sh 2003-09-24 18:20:11.204333512 +0200 +@@ -2022,6 +2022,8 @@ + convenience="$convenience $ladir/$objdir/$old_library" + old_convenience="$old_convenience $ladir/$objdir/$old_library" + tmp_libs= ++ # PKGW ++ dependency_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if test "X$duplicate_deps" = "Xyes" ; then +@@ -2143,6 +2145,8 @@ + fi + + tmp_libs= ++ #PKGW ++ dependency_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test +@@ -2359,7 +2363,9 @@ + if test -n "$inst_prefix_dir"; then + case "$libdir" in + [\\/]*) +- add_dir="$add_dir -L$inst_prefix_dir$libdir" ++ # Add the install location to the beginning, minimising possiblilty ++ # of linking to older version of the lib already installed. ++ add_dir="-L$inst_prefix_dir$libdir $add_dir" + ;; + esac + fi +@@ -2431,7 +2437,9 @@ + if test -n "$inst_prefix_dir"; then + case "$libdir" in + [\\/]*) +- add_dir="$add_dir -L$inst_prefix_dir$libdir" ++ # Add the install location to the beginning, minimising possiblilty ++ # of linking to older version of the lib already installed. ++ add_dir="-L$inst_prefix_dir$libdir $add_dir" + ;; + esac + fi +@@ -2691,7 +2699,7 @@ + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; +- *) tmp_libs="$tmp_libs $deplib" ;; ++ *) tmp_libs="$deplib $tmp_libs" ;; + esac + ;; + *) tmp_libs="$tmp_libs $deplib" ;; |