wok-next view xorg-xf86-video-vesa/receipt @ rev 20043

gdb: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 21:23:15 2017 +0200 (2017-10-22)
parents eb8067417980
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-video-vesa"
4 VERSION="2.3.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for generic VESA video cards"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/vesa/"
11 TARBALL="xf86-video-vesa-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 BUILD_DEPENDS="xorg-server-dev"
15 SPLIT="xorg-xf86-video-vesa-dev"
16 PKG_RULE="std-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 case $PACKAGE in
33 *-vesa)
34 copy @std
35 # We can use xorg-server-light with evdev and vesa driver.
36 #DEPENDS="xorg-server"
37 TAGS="xorg display"
38 ;;
39 *-dev)
40 copy @dev
41 DEPENDS="xorg-xf86-video-vesa xorg-server-dev"
42 ;;
43 esac
44 }