wok diff gmrun/receipt @ rev 4284

ffmpeg: version 0.5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 11:32:26 2009 +0200 (2009-09-26)
parents 360f1070ee8a
children 9f19aee613be
line diff
     1.1 --- a/gmrun/receipt	Tue Jun 23 12:23:23 2009 +0800
     1.2 +++ b/gmrun/receipt	Sat Sep 26 11:32:26 2009 +0200
     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 &&