# HG changeset patch # User Pascal Bellard # Date 1374569791 0 # Node ID e8f790529aae09236a04b31c0ac20728b39457b8 # Parent 487247909ed8dbcec842d02e2316e6d2bca2ff09 python-pygame: no more linux/videodev.h diff -r 487247909ed8 -r e8f790529aae musl-libc/receipt --- a/musl-libc/receipt Mon Jul 22 19:47:37 2013 -0300 +++ b/musl-libc/receipt Tue Jul 23 08:56:31 2013 +0000 @@ -28,8 +28,9 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share/musl/lib $fs/etc + mkdir -p $fs/usr/share/musl/lib $fs/etc $fs/bin cp -a $install/lib $fs + ln $fs/lib/$(ls $fs/lib) $fs/bin/ldd-musl cp -a $install/usr/share/musl/lib/*.so $fs/usr/share/musl/lib echo "/usr/share/musl/lib" > $fs/etc/ld-musl-$TARGET.path } diff -r 487247909ed8 -r e8f790529aae python-pygame/receipt --- a/python-pygame/receipt Mon Jul 22 19:47:37 2013 -0300 +++ b/python-pygame/receipt Tue Jul 23 08:56:31 2013 +0000 @@ -13,13 +13,14 @@ DEPENDS="python libsdl libsdl-image libsdl-mixer libsdl-ttf python-numpy \ libsmpeg gcc-lib-base" BUILD_DEPENDS="python-dev libsmpeg-dev libsdl-dev libsdl-image-dev \ -libsdl-mixer-dev libsdl-ttf-dev" +libsdl-mixer-dev libsdl-ttf-dev libv4l-dev" # Rules to configure and make the package. compile_rules() { cd $src patch -Np0 -i $stuff/config.patch + sed -i "s|linux/videodev.h|libv4l1-videodev.h|" src/camera.h python config.py -auto && python setup.py install --root=$DESTDIR }