wok annotate xorg-libXp/receipt @ 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
children cf86af013953
rev   line source
rcx@3505 1 # SliTaz package receipt.
rcx@3505 2
rcx@3505 3 PACKAGE="xorg-libXp"
rcx@3505 4 SOURCE="libXp"
rcx@3505 5 VERSION="1.0.0"
rcx@3505 6 CATEGORY="development"
rcx@3505 7 SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices."
rcx@3505 8 MAINTAINER="rcx@zoominternet.net"
rcx@3505 9 DEPENDS=""
rcx@3505 10 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"
rcx@3505 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
rcx@3505 12 WEB_SITE="http://www.x.org/"
rcx@3505 13 # This lib is missing from the current X11R7.4
rcx@3505 14 #WGET_URL="$XORG_MIRROR/lib/$TARBALL"
rcx@3505 15 WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL"
rcx@3505 16
rcx@3505 17 # Rules to configure and make the package.
rcx@3505 18 compile_rules()
rcx@3505 19 {
rcx@3505 20 cd $src
rcx@3505 21 ./configure \
rcx@3505 22 --prefix=/usr \
rcx@3505 23 --infodir=/usr/share/info \
rcx@3505 24 --mandir=/usr/share/man \
rcx@3505 25 $CONFIGURE_ARGS &&
rcx@3505 26 make && make DESTDIR=$PWD/_pkg install
rcx@3505 27 }
rcx@3505 28
rcx@3505 29 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3505 30 genpkg_rules()
rcx@3505 31 {
rcx@3505 32 mkdir -p $fs/usr/lib
rcx@3505 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
rcx@3505 34 }
rcx@3505 35