wok view xorg-xf86-video-vmware/receipt @ rev 7516

Added libgnomcanvas to libgnomecanvas-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 04 19:12:57 2010 +0000 (2010-12-04)
parents
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-vmware"
4 VERSION="11.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X.org vmware video driver"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="libdrm"
9 BUILD_DEPENDS="pkg-config xorg-dev-proto xorg-server-dev libdrm-dev xorg-libX11-dev xorg-libXext-dev"
10 SOURCE="xf86-video-vmware"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xorg-module-dir=/usr/lib/X11/modules \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/X11/modules/drivers/
33 cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \
34 $fs/usr/lib/X11/modules/drivers/
35 }