wok-6.x annotate xorg-libXp/receipt @ rev 8771
Fixed dhcp-client and dhcp6-client.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Feb 21 07:24:20 2011 +0000 (2011-02-21) |
parents | cf86af013953 |
children | 848af2e8dc82 |
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" |
slaxemulator@8029 | 9 DEPENDS="xorg-libXext" |
slaxemulator@8029 | 10 BUILD_DEPENDS="xorg-libXext-dev 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 |