# HG changeset patch # User Christopher Rogers # Date 1296961448 0 # Node ID 7c8f687284394cd647494991028a72a43869c489 # Parent ef17f8f40a10aab9eff665444a72c1a731aa5010 Fixed freeimage. diff -r ef17f8f40a10 -r 7c8f68728439 freeimage-dev/receipt --- a/freeimage-dev/receipt Sun Feb 06 02:59:23 2011 +0000 +++ b/freeimage-dev/receipt Sun Feb 06 03:04:08 2011 +0000 @@ -14,7 +14,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib - pkgdir=$WOK/$WANTED/$SOURCE/_pkg - cp -a $pkgdir/usr/lib/*.*a $fs/usr/lib - cp -a $pkgdir/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr } diff -r ef17f8f40a10 -r 7c8f68728439 freeimage/receipt --- a/freeimage/receipt Sun Feb 06 02:59:23 2011 +0000 +++ b/freeimage/receipt Sun Feb 06 03:04:08 2011 +0000 @@ -15,7 +15,7 @@ # Rules to configure and make the package. compile_rules() { - cd $SOURCE + cd $src patch -Np1 -i ../stuff/gcc4.5_ln.patch pkgdir=$PWD/_pkg incl=$pkgdir/usr/include @@ -33,7 +33,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib - pkgdir=$PWD/$SOURCE/_pkg - cp -a $pkgdir/usr/lib/*.so* $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }