wok rev 3505
Add: xorg-libXp and xorg-printproto, Xorg print modules
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Fri Jun 19 12:31:10 2009 +0000 (2009-06-19) |
parents | ba1dc8244e4f |
children | cf86af013953 |
files | xorg-libXp-dev/receipt xorg-libXp/receipt xorg-printproto/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xorg-libXp-dev/receipt Fri Jun 19 12:31:10 2009 +0000 1.3 @@ -0,0 +1,24 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xorg-libXp-dev" 1.7 +SOURCE="libXp" 1.8 +VERSION="1.0.0" 1.9 +CATEGORY="development" 1.10 +SHORT_DESC="Xorg module devel files." 1.11 +MAINTAINER="rcx@zoominternet.net" 1.12 +DEPENDS="" 1.13 +BUILD_DEPENDS="" 1.14 +WEB_SITE="http://www.x.org/" 1.15 +WANTED="xorg-libXp" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + # _pkg is not set correctly when both SOURCE and WANTED are defined 1.21 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 1.22 + 1.23 + mkdir -p $fs/usr/lib 1.24 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.25 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.26 +} 1.27 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xorg-libXp/receipt Fri Jun 19 12:31:10 2009 +0000 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xorg-libXp" 2.7 +SOURCE="libXp" 2.8 +VERSION="1.0.0" 2.9 +CATEGORY="development" 2.10 +SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices." 2.11 +MAINTAINER="rcx@zoominternet.net" 2.12 +DEPENDS="" 2.13 +BUILD_DEPENDS="slitaz-toolchain pkg-config xorg-xproto xorg-kbproto xorg-libXdmcp-dev xorg-libX11-dev xorg-libXau-dev xorg-libXext-dev xorg-xextproto xorg-printproto" 2.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 2.15 +WEB_SITE="http://www.x.org/" 2.16 +# This lib is missing from the current X11R7.4 2.17 +#WGET_URL="$XORG_MIRROR/lib/$TARBALL" 2.18 +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + cd $src 2.24 + ./configure \ 2.25 + --prefix=/usr \ 2.26 + --infodir=/usr/share/info \ 2.27 + --mandir=/usr/share/man \ 2.28 + $CONFIGURE_ARGS && 2.29 + make && make DESTDIR=$PWD/_pkg install 2.30 +} 2.31 + 2.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.33 +genpkg_rules() 2.34 +{ 2.35 + mkdir -p $fs/usr/lib 2.36 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.37 +} 2.38 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xorg-printproto/receipt Fri Jun 19 12:31:10 2009 +0000 3.3 @@ -0,0 +1,35 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xorg-printproto" 3.7 +SOURCE="printproto" 3.8 +VERSION="1.0.3" 3.9 +CATEGORY="development" 3.10 +SHORT_DESC="Xorg server devel module." 3.11 +MAINTAINER="rcx@zoominternet.net" 3.12 +DEPENDS="" 3.13 +BUILD_DEPENDS="slitaz-toolchain" 3.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 3.15 +WEB_SITE="http://www.x.org/" 3.16 +# This proto is missing from the current X11R7.4 3.17 +#WGET_URL="$XORG_MIRROR/proto/$TARBALL" 3.18 +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/proto/$TARBALL" 3.19 + 3.20 +# Rules to configure and make the package. 3.21 +compile_rules() 3.22 +{ 3.23 + cd $src 3.24 + ./configure \ 3.25 + --prefix=/usr \ 3.26 + --infodir=/usr/share/info \ 3.27 + --mandir=/usr/share/man \ 3.28 + $CONFIGURE_ARGS && 3.29 + make && make DESTDIR=$PWD/_pkg install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs 3.36 + cp -a $_pkg/usr $fs 3.37 +} 3.38 +