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

Up: cairo-dock-plugins to 2.4.0~2.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 01:46:47 2011 +0000 (2011-10-17)
parents b59af9648acd
children 6971e86f8875
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-ati"
4 VERSION="6.14.1"
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 }