wok view xorg-xf86-video-vesa/receipt @ rev 16434

Merge branches
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 18 13:51:05 2014 +0300 (2014-04-18)
parents 5f4f33f36a0f
children 36ab68445ed7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-vesa"
4 VERSION="2.3.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg Vesa video driver."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xf86-video-vesa"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 # We can use xorg-server-light with evdev and vesa driver.
15 #DEPENDS="xorg-server"
16 BUILD_DEPENDS="xorg-server-dev"
18 MODS='/usr/lib/X11/modules'
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure \
25 --sysconfdir=/etc \
26 --localstatedir=/var \
27 --with-xorg-module-dir=$MODS \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p ${fs}${MODS}/drivers
36 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
37 }