wok diff wine-rt/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents dfef8de3d270
children ee1d44476432
line diff
     1.1 --- a/wine-rt/receipt	Fri Jan 30 10:17:37 2015 +0100
     1.2 +++ b/wine-rt/receipt	Tue Jan 28 10:03:39 2020 +0100
     1.3 @@ -1,26 +1,27 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="wine-rt"
     1.7 -VERSION="1.7.16"
     1.8 +VERSION="4.0.2"
     1.9  CATEGORY="misc"
    1.10 +TAGS="windows"
    1.11  SHORT_DESC="Windows API for Linux."
    1.12  MAINTAINER="xj@wp.pl"
    1.13  LICENSE="LGPL2.1"
    1.14 -TARBALL="${PACKAGE%-rt}-$VERSION.tar.bz2"
    1.15 -WEB_SITE="http://www.winehq.org/"
    1.16 -WGET_URL="$SF_MIRROR/${PACKAGE%-rt}/$TARBALL"
    1.17 -TAGS="windows"
    1.18 +WEB_SITE="https://www.winehq.org/"
    1.19 +
    1.20 +TARBALL="${PACKAGE%-rt}-$VERSION.tar.xz"
    1.21 +WGET_URL="https://dl.winehq.org/${PACKAGE%-rt}/source/${VERSION%.*}/$TARBALL"
    1.22 +
    1.23  PROVIDE="wine"
    1.24 -
    1.25 -DEPENDS="alsa-lib libxml2 libxslt mesa libglu-mesa xorg-dev lcms freetype jpeg \
    1.26 -libpng tiff"
    1.27 -BUILD_DEPENDS="alsa-lib-dev flex bison mesa-dev libglu-mesa-dev freetype-dev \
    1.28 -libtool libxml2-dev libxslt-dev lcms-dev jpeg-dev libpng-dev tiff-dev prelink"
    1.29 +DEPENDS="alsa-lib freetype jpeg lcms libglu-mesa libpng libxslt libxml2 mesa \
    1.30 +	tiff xorg-dev"
    1.31 +BUILD_DEPENDS="alsa-lib-dev bison flex freetype-dev jpeg-dev lcms-dev libglu-mesa-dev \
    1.32 +	libpng-dev libtool libxml2-dev libxslt-dev mesa-dev prelink tiff-dev"
    1.33  
    1.34  # Rules to configure and make the package.
    1.35  compile_rules()
    1.36  {
    1.37 -	cd $src
    1.38 +	# since 1.7.3.2
    1.39  	patch -s -Np1 -i $stuff/wine-rt-101107.patch
    1.40  	
    1.41  CONFIGURE_ARGS='
    1.42 @@ -37,29 +38,31 @@
    1.43    --without-mpg123
    1.44    --without-openal
    1.45    --without-opencl
    1.46 -  --without-openssl
    1.47    --without-oss
    1.48    --without-sane
    1.49    --without-v4l
    1.50    --disable-win16
    1.51    --with-x
    1.52  '
    1.53 -  CFLAGS="$CFLAGS -O2 -funroll-loops -frounding-math -mfpmath=sse -msse2 \
    1.54 -     -fsignaling-nans -pipe"
    1.55 -	
    1.56 -  ./configure $CONFIGURE_ARGS &&
    1.57 -  make $MAKEFLAGS && make install
    1.58 +	CFLAGS="$CFLAGS -O2 -funroll-loops -frounding-math -mfpmath=sse -msse2 \
    1.59 +		-fsignaling-nans -pipe"
    1.60 +
    1.61 +	./configure $CONFIGURE_ARGS &&
    1.62 +	make $MAKEFLAGS &&
    1.63 +	make install
    1.64  }
    1.65  
    1.66  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.67  genpkg_rules()
    1.68  {
    1.69 -	mkdir -p $fs/usr/lib/wine $fs/usr/share
    1.70 -	cp -a $install/usr/bin $fs/usr
    1.71 -	cp -a $install/usr/share/wine $fs/usr/share
    1.72 -	cp -a $install/usr/share/applications $fs/usr/share
    1.73 -	cp -a $install/usr/lib/lib* $fs/usr/lib
    1.74 -	cp -a $install/usr/lib/wine/*.so $fs/usr/lib/wine
    1.75 +	mkdir -p $fs/usr/lib/wine
    1.76 +	mkdir -p $fs/usr/share
    1.77 +
    1.78 +	cp -a $install/usr/bin			$fs/usr
    1.79 +	cp -a $install/usr/share/wine		$fs/usr/share
    1.80 +	cp -a $install/usr/share/applications	$fs/usr/share
    1.81 +	cp -a $install/usr/lib/lib*		$fs/usr/lib
    1.82 +	cp -a $install/usr/lib/wine/*.so	$fs/usr/lib/wine
    1.83  }
    1.84  
    1.85  post_install()