# HG changeset patch # User Hans-G?nter Theisgen # Date 1555431956 -3600 # Node ID 6aefc0ee1ed5a69fb1aab06188de60a490c7bfdd # Parent 293dbf206948880a35f7bbf6f64c9a0b3881747c updated libsdl and libsdl-dev (1.2.14 -> 1.2.15) diff -r 293dbf206948 -r 6aefc0ee1ed5 libsdl-dev/receipt --- a/libsdl-dev/receipt Tue Apr 16 16:33:43 2019 +0100 +++ b/libsdl-dev/receipt Tue Apr 16 17:25:56 2019 +0100 @@ -1,26 +1,29 @@ # SliTaz package receipt. PACKAGE="libsdl-dev" -VERSION="1.2.14" +VERSION="1.2.15" CATEGORY="development" -SHORT_DESC="Simple DirectMedia Layer devel files." +SHORT_DESC="Simple DirectMedia Layer - development files." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="http://www.libsdl.org/" + SOURCE="SDL" WANTED="libsdl" -WEB_SITE="http://www.libsdl.org/" -HOST_ARCH="i486 arm" DEPENDS="xorg-libXext-dev xorg-libX11-dev xorg-libXrender-dev libsdl pkg-config" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/aclocal $fs/usr/share } - diff -r 293dbf206948 -r 6aefc0ee1ed5 libsdl/receipt --- a/libsdl/receipt Tue Apr 16 16:33:43 2019 +0100 +++ b/libsdl/receipt Tue Apr 16 17:25:56 2019 +0100 @@ -1,35 +1,39 @@ # SliTaz package receipt. PACKAGE="libsdl" -VERSION="1.2.14" +VERSION="1.2.15" CATEGORY="x-window" -SHORT_DESC="Simple DirectMedia Layer" +SHORT_DESC="Simple DirectMedia Layer." MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" +WEB_SITE="http://www.libsdl.org/" + SOURCE="SDL" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://www.libsdl.org/" WGET_URL="http://www.libsdl.org/release/$TARBALL" + +DEPENDS="xorg-libX11 xorg-libXext xorg-libXrender" +BUILD_DEPENDS="alsa-lib-dev libglu-mesa mesa-dev xorg-libX11-dev xorg-libXext-dev \ + xorg-libXrender-dev xorg-libXt-dev" + HOST_ARCH="i486 arm" -DEPENDS="xorg-libXext xorg-libXrender xorg-libX11" -BUILD_DEPENDS="libglu-mesa mesa-dev xorg-libXt-dev xorg-libXext-dev \ -xorg-libXrender-dev xorg-libX11-dev alsa-lib-dev" - # Handle cross compilation. case "$ARCH" in - arm) BUILD_DEPENDS="xorg-libXt-dev xorg-libXext-dev xorg-libXrender-dev \ -xorg-libX11-dev" ;; + arm) BUILD_DEPENDS="xorg-libX11-devxorg-libXext-dev xorg-libXrender-dev \ + xorg-libXt-dev" ;; esac # Rules to configure and make the package. compile_rules() { - patch -Np1 -i $stuff/sdl-$VERSION-joystick-crash.diff - patch -Np1 -i $stuff/sdl-$VERSION-fix-mouse-clicking.patch - patch -Np1 -i $stuff/sdl-$VERSION-fix-disappearing-cursor.patch - patch -Np1 -i $stuff/sdl-1.2.14-add-XGetRequest-symbol.patch - ./configure $CONFIGURE_ARGS && make && make install +# patch -Np1 -i $stuff/sdl-$VERSION-joystick-crash.diff +# patch -Np1 -i $stuff/sdl-$VERSION-fix-mouse-clicking.patch +# patch -Np1 -i $stuff/sdl-$VERSION-fix-disappearing-cursor.patch +# patch -Np1 -i $stuff/sdl-1.2.14-add-XGetRequest-symbol.patch + ./configure $CONFIGURE_ARGS && + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg.