wok view mesa-dri-r128/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents fc33aae5387c
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mesa-dri-r128"
4 VERSION="7.10.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Mesa DRI drivers for ATI Rage128."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.mesa3d.org/"
10 WANTED="mesa7"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/lib/dri $fs/etc/X11/xorg.conf.d/
16 cp $install/usr/lib/dri/r128_dri.so $fs/usr/lib/dri
17 cat > $fs/etc/X11/xorg.conf.d/90-DRI.conf <<EOT
18 Section "DRI"
19 Mode 0666
20 EndSection
21 EOT
22 chown -R root.root $fs
23 }