2017-01-30 02:42:26 +01:00
|
|
|
# Description: X Pencere Sistemi cekirdegi
|
2016-02-24 01:27:23 +01:00
|
|
|
# URL: http://xorg.freedesktop.org
|
2017-01-30 02:42:26 +01:00
|
|
|
# Packagers: milisarge
|
2016-02-24 01:27:23 +01:00
|
|
|
# Depends on: xcb-util-keysyms libepoxy xcb-util-image xcb-util-renderutil xcb-util-wm xorg-mesa xorg-glu xorg-pixman xorg-libdmx xorg-libxres xorg-font xorg-xkeyboard-config
|
|
|
|
|
|
|
|
name=xorg-server
|
|
|
|
version=1.18.1
|
|
|
|
release=1
|
2016-02-29 22:00:46 +01:00
|
|
|
source=(http://www.x.org/releases/individual/xserver/$name-$version.tar.bz2
|
2016-02-24 01:27:23 +01:00
|
|
|
http://www.linuxfromscratch.org/patches/downloads/xorg-server/$name-$version-add_prime_support-1.patch
|
|
|
|
http://www.linuxfromscratch.org/patches/downloads/xorg-server/$name-$version-wayland_190-1.patch)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
patch -Np1 -i ../$name-$version-add_prime_support-1.patch
|
|
|
|
patch -Np1 -i ../$name-$version-wayland_190-1.patch
|
|
|
|
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
|
|
--with-xkb-output=/var/lib/xkb \
|
|
|
|
--enable-glamor \
|
|
|
|
--with-fontrootdir=/usr/share/fonts \
|
|
|
|
--enable-install-setuid \
|
|
|
|
--disable-systemd-logind \
|
|
|
|
--enable-suid-wrapper
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/var
|
|
|
|
|
|
|
|
# glamor module part of xorg-glamor-egl
|
|
|
|
rm $PKG/usr/lib/xorg/modules/libglamoregl.{la,so}
|
|
|
|
}
|