wok rev 22373

updated ilmbase and ilmbase-dev (2.2.0 -> 2.3.0)
author Hans-G?nter Theisgen
date Wed Nov 27 16:43:45 2019 +0100 (2019-11-27)
parents b1276b2c9dc1
children f3042d73dad4
files ilmbase-dev/receipt ilmbase/receipt
line diff
     1.1 --- a/ilmbase-dev/receipt	Tue Nov 26 17:42:45 2019 +0100
     1.2 +++ b/ilmbase-dev/receipt	Wed Nov 27 16:43:45 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ilmbase-dev"
     1.7 -VERSION="2.2.0"
     1.8 +VERSION="2.3.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files for ilmbase"
    1.11 +SHORT_DESC="Development files for ilmbase."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="BSD"
    1.14 -WEB_SITE="http://www.openexr.org/"
    1.15 -WANTED="ilmbase"
    1.16 +WEB_SITE="https://www.openexr.com/"
    1.17  
    1.18  DEPENDS="ilmbase pkg-config"
    1.19 +WANTED="ilmbase"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.28 +
    1.29 +	cp -a $install/usr/include		$fs/usr
    1.30 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.31 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.32  }
     2.1 --- a/ilmbase/receipt	Tue Nov 26 17:42:45 2019 +0100
     2.2 +++ b/ilmbase/receipt	Wed Nov 27 16:43:45 2019 +0100
     2.3 @@ -1,27 +1,37 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="ilmbase"
     2.7 -VERSION="2.2.0"
     2.8 +VERSION="2.3.0"
     2.9  CATEGORY="x-window"
    2.10 -SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR"
    2.11 +SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR."
    2.12  MAINTAINER="slaxemulator@gmail.com"
    2.13  LICENSE="BSD"
    2.14 +WEB_SITE="https://www.openexr.com/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="http://www.openexr.org"
    2.18 -WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
    2.19 +#WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
    2.20 +WGET_URL="https://github.com/openexr/openexr/releases/download/$TARBALL"
    2.21  
    2.22 -BUILD_DEPENDS="bash"
    2.23 +DEPENDS="gcc83-lib-base"
    2.24 +BUILD_DEPENDS="bash gcc83"
    2.25  
    2.26  # Rules to configure and make the package.
    2.27  compile_rules()
    2.28  {
    2.29 -	./configure $CONFIGURE_ARGS &&
    2.30 -	make && make install
    2.31 +	export	SHELL=/bin/bash
    2.32 +	export	CONFIGURE_SHELL=/bin/bash
    2.33 +
    2.34 +	./configure		\
    2.35 +		CC=gcc-83	\
    2.36 +		CXX=g++-83	\
    2.37 +		$CONFIGURE_ARGS &&
    2.38 +	make &&
    2.39 +	make install
    2.40  }
    2.41  
    2.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.43  genpkg_rules()
    2.44  {
    2.45  	mkdir -p $fs/usr/lib
    2.46 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.48  }