wok diff gmrun/receipt @ rev 4769

Fix: gimp DEPENDS on libexif to use jpeg images
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jan 11 19:27:02 2010 +0100 (2010-01-11)
parents 360f1070ee8a
children 9f19aee613be
line diff
     1.1 --- a/gmrun/receipt	Tue Jun 23 12:23:23 2009 +0800
     1.2 +++ b/gmrun/receipt	Mon Jan 11 19:27:02 2010 +0100
     1.3 @@ -15,7 +15,14 @@
     1.4  compile_rules()
     1.5  {
     1.6      cd $src
     1.7 -    patch -p1 -i ../stuff/gmrun-0.9.2-gcc43.patch &&
     1.8 +    while read file; do
     1.9 +        [ -f done.$file ] && continue
    1.10 +        echo "Apply $file..."
    1.11 +        patch -p1 < ../stuff/$file || return 1
    1.12 +        touch done.$file
    1.13 +    done <<EOT
    1.14 +gmrun-0.9.2-gcc43.patch
    1.15 +EOT
    1.16      ./configure --prefix=/usr \
    1.17          $CONFIGURE_ARGS &&
    1.18      make &&