mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-14 02:53:50 +02:00
xorg-server: update to 1.20.7 and disable VBE/int10 on non-x86
This commit is contained in:
parent
c2de2ba769
commit
4f7e0185e6
1 changed files with 9 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'xorg-server'
|
# Template file for 'xorg-server'
|
||||||
pkgname=xorg-server
|
pkgname=xorg-server
|
||||||
version=1.20.6
|
version=1.20.7
|
||||||
revision=3
|
revision=1
|
||||||
build_style=meson
|
build_style=meson
|
||||||
configure_args="-Dipv6=true -Dxorg=true -Dxnest=true -Dxephyr=true
|
configure_args="-Dipv6=true -Dxorg=true -Dxnest=true -Dxephyr=true
|
||||||
-Dxvfb=true -Dhal=false -Dudev=true -Dxkb_dir=/usr/share/X11/xkb
|
-Dxvfb=true -Dhal=false -Dudev=true -Dxkb_dir=/usr/share/X11/xkb
|
||||||
|
@ -23,7 +23,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
license="MIT, BSD-3-Clause"
|
license="MIT, BSD-3-Clause"
|
||||||
homepage="https://xorg.freedesktop.org"
|
homepage="https://xorg.freedesktop.org"
|
||||||
distfiles="${XORG_SITE}/xserver/${pkgname}-${version}.tar.bz2"
|
distfiles="${XORG_SITE}/xserver/${pkgname}-${version}.tar.bz2"
|
||||||
checksum=6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1
|
checksum=bd5986f010f34f5b3d6bc99fe395ecb1e0dead15a26807e0c832701809a06ea1
|
||||||
lib32disabled=yes
|
lib32disabled=yes
|
||||||
provides="xserver-abi-extension-10_1 xserver-abi-input-24_1 xserver-abi-video-24_1 xf86-video-modesetting-1_1"
|
provides="xserver-abi-extension-10_1 xserver-abi-input-24_1 xserver-abi-video-24_1 xf86-video-modesetting-1_1"
|
||||||
replaces="xf86-video-modesetting>=0"
|
replaces="xf86-video-modesetting>=0"
|
||||||
|
@ -46,6 +46,12 @@ i686*|x86_64*|aarch64*|ppc*|armv7l*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# disable VBE on non-x86 systems
|
||||||
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
|
x86_64*|i686*) configure_args+=" -Dint10=x86emu -Dvbe=true" ;;
|
||||||
|
*) configure_args+=" -Dint10=false -Dvbe=false" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
*-musl)
|
*-musl)
|
||||||
# required when secure_rpc is enabled and not using glibc for rpc/rpc.h
|
# required when secure_rpc is enabled and not using glibc for rpc/rpc.h
|
||||||
|
|
Loading…
Add table
Reference in a new issue