wok view xorg-xf86-video-ati/receipt @ rev 9154

magicpoint: needs make -j1
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 07 09:07:43 2011 +0100 (2011-03-07)
parents f2d5f13a8935
children 76e20a3a9bdb
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-ati"
4 VERSION="6.14.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server ATI driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-server mesa-dri-ati"
9 BUILD_DEPENDS="xorg-server-dev"
10 SOURCE="xf86-video-ati"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 #WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 WGET_URL="http://xorg.freedesktop.org/releases/individual/driver/$TARBALL"
15 TAGS="xorg display"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --localstatedir=/var \
26 --with-xorg-module-dir=/usr/lib/X11/modules \
27 --enable-dri \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib/X11/modules/drivers/ \
37 $fs/usr/lib/X11/modules/multimedia/
38 cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \
39 $fs/usr/lib/X11/modules/drivers/
40 cp -a $_pkg/usr/lib/X11/modules/multimedia/*.so \
41 $fs/usr/lib/X11/modules/multimedia/
43 }