wok rev 3219

Add: libgdiplus
author Matthew Sheets <rcx@zoominternet.net>
date Thu May 28 15:27:31 2009 +0000 (2009-05-28)
parents 255e56fcd6cf
children bae029d27902
files libgdiplus-dev/receipt libgdiplus/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libgdiplus-dev/receipt	Thu May 28 15:27:31 2009 +0000
     1.3 @@ -0,0 +1,17 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libgdiplus-dev"
     1.7 +VERSION="2.4"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="libgdiplus devel files."
    1.10 +WEB_SITE="http://www.mono-project.com/Libgdiplus"
    1.11 +MAINTAINER="rcx@zoominternet.net"
    1.12 +WANTED="libgdiplus"
    1.13 +
    1.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 +genpkg_rules()
    1.16 +{
    1.17 +	mkdir -p $fs/usr/lib
    1.18 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.19 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.20 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libgdiplus/receipt	Thu May 28 15:27:31 2009 +0000
     2.3 @@ -0,0 +1,37 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libgdiplus"
     2.7 +VERSION="2.4"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Mono library providing a GDI+ compatible API on non-Windows operating systems"
    2.10 +MAINTAINER="rcx@zoominternet.net"
    2.11 +DEPENDS="glib glibc-base xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXrender cairo expat freetype fontconfig giflib jpeg libpng tiff pixman libexif zlib libuuid"
    2.12 +BUILD_DEPENDS="slitaz-toolchain m4 bison pkg-config glib-dev xorg-dev cairo-dev expat-dev freetype-dev fontconfig-dev giflib-dev jpeg-dev libpng-dev tiff-dev pixman-dev libexif-dev libexif zlib-dev"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.14 +WEB_SITE="http://www.mono-project.com/Libgdiplus"
    2.15 +WGET_URL="ftp://ftp.novell.com/pub/mono/sources/$PACKAGE/$TARBALL"
    2.16 +
    2.17 +# Build documentation at http://mono-project.com/Compiling_Mono
    2.18 +# and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4
    2.19 +
    2.20 +# Optional packages - libgdiplus libzlib
    2.21 +
    2.22 +# Rules to configure and make the package.
    2.23 +compile_rules()
    2.24 +{
    2.25 +	cd $src
    2.26 +	./configure \
    2.27 +		--prefix=/usr \
    2.28 +		--infodir=/usr/share/info \
    2.29 +		--mandir=/usr/share/man \
    2.30 +		$CONFIGURE_ARGS  &&
    2.31 +	make  &&
    2.32 +	make DESTDIR=$PWD/_pkg install
    2.33 +}
    2.34 +
    2.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.36 +genpkg_rules()
    2.37 +{
    2.38 +	mkdir -p $fs/usr/lib
    2.39 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.40 +}