wok-6.x rev 24792
updated libgdiplus and libgdiplus-dev (6.0.4 -> 6.0.5)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 21 14:27:40 2022 +0100 (2022-03-21) |
parents | 7f622f432a63 |
children | 76d468568930 |
files | libgdiplus-dev/receipt libgdiplus/description.txt libgdiplus/receipt |
line diff
1.1 --- a/libgdiplus-dev/receipt Mon Mar 21 14:11:57 2022 +0100 1.2 +++ b/libgdiplus-dev/receipt Mon Mar 21 14:27:40 2022 +0100 1.3 @@ -1,9 +1,9 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libgdiplus-dev" 1.7 -VERSION="6.0.4" 1.8 +VERSION="6.0.5" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="libgdiplus development files." 1.11 +SHORT_DESC="Libgdiplus development files." 1.12 WEB_SITE="https://www.mono-project.com/Libgdiplus" 1.13 MAINTAINER="rcx@zoominternet.net" 1.14 LICENSE="MIT" 1.15 @@ -14,8 +14,6 @@ 1.16 # Rules to gen a SliTaz package suitable for Tazpkg. 1.17 genpkg_rules() 1.18 { 1.19 - mkdir -p $fs/usr/lib 1.20 - 1.21 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.23 + cook_copy_folders pkgconfig 1.24 + cook_copy_files *.*a 1.25 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libgdiplus/description.txt Mon Mar 21 14:27:40 2022 +0100 2.3 @@ -0,0 +1,3 @@ 2.4 +Libgdiplus is the Mono library that provides a GDI+-compatible API 2.5 +on non-Windows operating systems. 2.6 +Our implementation uses Cairo to do most of the heavy lifting.
3.1 --- a/libgdiplus/receipt Mon Mar 21 14:11:57 2022 +0100 3.2 +++ b/libgdiplus/receipt Mon Mar 21 14:27:40 2022 +0100 3.3 @@ -1,24 +1,25 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libgdiplus" 3.7 -VERSION="6.0.4" 3.8 +VERSION="6.0.5" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Mono library providing a GDI+ compatible API on non-Windows operating systems." 3.11 MAINTAINER="rcx@zoominternet.net" 3.12 LICENSE="MIT" 3.13 -WEB_SITE="https://www.mono-project.com/Libgdiplus" 3.14 +WEB_SITE="https://www.mono-project.com/docs/gui/libgdiplus/" 3.15 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WGET_URL="https://github.com/mono/$PACKAGE/archive/$VERSION/$TARBALL" 3.18 +WGET_URL="https://download.mono-project.com/sources/$PACKAGE/$TARBALL" 3.19 3.20 -DEPENDS="glib glibc-base cairo expat fontconfig freetype giflib jpeg 3.21 - libexif libpng pixman tiff util-linux-uuid xorg-libICE 3.22 - xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXrender 3.23 - zlib" 3.24 -BUILD_DEPENDS="autoconf automake bison cairo-dev expat-dev fontconfig-dev 3.25 - freetype-dev gcc83 giflib-dev glib-dev jpeg-dev libexif-dev 3.26 - libpng-dev libtool libxml2-dev m4 pixman-dev pkg-config tiff-dev 3.27 - util-linux-uuid-dev xorg-dev zlib-dev" 3.28 +DEPENDS="cairo expat fontconfig freetype giflib glib glibc-base 3.29 + jpeg libexif libpng pixman tiff util-linux-uuid 3.30 + xorg-libICE xorg-libSM xorg-libX11 xorg-libXau 3.31 + xorg-libXdmcp xorg-libXrender zlib" 3.32 +BUILD_DEPENDS="bison cairo-dev expat-dev fontconfig-dev 3.33 + freetype-dev giflib giflib-dev glib-dev jpeg-dev 3.34 + libexif libexif-dev libpng-dev libxml2-dev m4 3.35 + pixman-dev pkg-config tiff-dev util-linux-uuid-dev xorg-dev 3.36 + zlib-dev" 3.37 3.38 # Build documentation at http://mono-project.com/Compiling_Mono 3.39 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 3.40 @@ -32,20 +33,18 @@ 3.41 # Rules to configure and make the package. 3.42 compile_rules() 3.43 { 3.44 - ./autogen.sh \ 3.45 + ./configure \ 3.46 --prefix=/usr \ 3.47 --infodir=/usr/share/info \ 3.48 --mandir=/usr/share/man \ 3.49 --sysconfdir=/etc \ 3.50 - --with-cairo=system \ 3.51 $CONFIGURE_ARGS && 3.52 - make && 3.53 - make DESTDIR=$DESTDIR install 3.54 + make && 3.55 + make install DESTDIR=$DESTDIR 3.56 } 3.57 3.58 # Rules to gen a SliTaz package suitable for Tazpkg. 3.59 genpkg_rules() 3.60 { 3.61 - mkdir -p $fs/usr/lib 3.62 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.63 + cook_copy_files *.so* 3.64 }