# HG changeset patch # User Matthew Sheets # Date 1245414670 0 # Node ID 78640377ce73dcfb835b4da4edb797b578b81f5a # Parent ba1dc8244e4f81610a3b0296b09ad3d83488b650 Add: xorg-libXp and xorg-printproto, Xorg print modules diff -r ba1dc8244e4f -r 78640377ce73 xorg-libXp-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-libXp-dev/receipt Fri Jun 19 12:31:10 2009 +0000 @@ -0,0 +1,24 @@ +# SliTaz package receipt. + +PACKAGE="xorg-libXp-dev" +SOURCE="libXp" +VERSION="1.0.0" +CATEGORY="development" +SHORT_DESC="Xorg module devel files." +MAINTAINER="rcx@zoominternet.net" +DEPENDS="" +BUILD_DEPENDS="" +WEB_SITE="http://www.x.org/" +WANTED="xorg-libXp" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + # _pkg is not set correctly when both SOURCE and WANTED are defined + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg + + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib +} + diff -r ba1dc8244e4f -r 78640377ce73 xorg-libXp/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-libXp/receipt Fri Jun 19 12:31:10 2009 +0000 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="xorg-libXp" +SOURCE="libXp" +VERSION="1.0.0" +CATEGORY="development" +SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices." +MAINTAINER="rcx@zoominternet.net" +DEPENDS="" +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" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://www.x.org/" +# This lib is missing from the current X11R7.4 +#WGET_URL="$XORG_MIRROR/lib/$TARBALL" +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +} + diff -r ba1dc8244e4f -r 78640377ce73 xorg-printproto/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-printproto/receipt Fri Jun 19 12:31:10 2009 +0000 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="xorg-printproto" +SOURCE="printproto" +VERSION="1.0.3" +CATEGORY="development" +SHORT_DESC="Xorg server devel module." +MAINTAINER="rcx@zoominternet.net" +DEPENDS="" +BUILD_DEPENDS="slitaz-toolchain" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://www.x.org/" +# This proto is missing from the current X11R7.4 +#WGET_URL="$XORG_MIRROR/proto/$TARBALL" +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/proto/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +} +