wok view xorg-xf86-video-r128/receipt @ rev 10209

Up: libgnomecanvas to 2.30.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 23:22:22 2011 +0000 (2011-05-20)
parents c514cc4854d8
children 6971e86f8875
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-r128"
4 VERSION="6.8.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server Rage128 driver."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="xorg-server mesa-dri-r128"
9 BUILD_DEPENDS="xorg-server-dev"
10 SOURCE="xf86-video-r128"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 TAGS="xorg display"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var \
25 --with-xorg-module-dir=/usr/lib/X11/modules \
26 --enable-dri \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/X11/modules/drivers
36 cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \
37 $fs/usr/lib/X11/modules/drivers/
38 }