wok view xorg-xf86-video-r128/receipt @ rev 20896

updated ethtool (4.2 -> 4.19)
author Hans-G?nter Theisgen
date Tue Feb 26 14:11:25 2019 +0100 (2019-02-26)
parents fc33aae5387c
children 873fa1b5f8ff
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-r128"
4 VERSION="6.10.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server Rage128 driver."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xf86-video-r128"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.x.org/"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
13 TAGS="xorg display"
15 DEPENDS="xorg-server mesa-dri-r128"
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 --mandir=/usr/share/man \
27 --localstatedir=/var \
28 --with-xorg-module-dir=$MODS \
29 --enable-dri \
30 $CONFIGURE_ARGS &&
31 make && make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p ${fs}${MODS}/drivers
38 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
39 }