summaryrefslogtreecommitdiff
path: root/repo/xorg-server/xorg-server.xibuild
blob: 99aef61768ef7cf7ea9a545817665fd9bd89083e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh

MAKEDEPS="meson ninja doxygen xmlto libxcvt pixman font-util xkeyboardconfig elogind libepoxy libtirpc polkit acpid nettle libgcrypt xcb-util-keysyms xcb-util-image xcb-util-renderutil xcb-util-wm xkbcomp libxfont2"

PKG_VER=21.1.6
SOURCE=https://www.x.org/pub/individual/xserver/xorg-server-$PKG_VER.tar.xz

build () {
    mkdir build &&
    cd    build &&

    meson --prefix=/usr \
    		-Dxorg=true \
		-Dxorg=true \
		-Dxephyr=true \
		-Dglamor=true \
		-Dxnest=true \
		-Dxvfb=true \
		-Dxwin=false \
		-Dglx=true \
		-Dxdmcp=true \
		-Dxdm-auth-1=true \
		-Dxcsecurity=true \
		-Dsecure-rpc=false \
		-Dipv6=true \
		-Dxkb_dir=/usr/share/X11/xkb \
		-Dxkb_output_dir=/var/lib/xkb \
		-Dlisten_tcp=false \
		-Dlisten_unix=true \
		-Dlisten_local=true \
		-Dsuid_wrapper=true \
		-Dpciaccess=true \
		-Dudev=true \
		-Dhal=false \
		-Dsystemd_logind=false \
		-Ddpms=true \
		-Ddri1=true \
		-Ddri2=true \
		-Ddri3=true \
		..
    ninja
}

package () {
    DESTDIR=$PKG_DEST ninja install

	chmod u+s "$PKG_DEST"/usr/libexec/Xorg.wrap

	# Don't conflict with xf86-input-evdev
	rm -f "$PKG_DEST"/usr/share/X11/xorg.conf.d/10-evdev.conf

    mkdir -p $PKG_DEST/etc/X11/xorg.conf.d &&
    mkdir -p $PKG_DEST/etc/sysconfig &&
cat >> $PKG_DEST/etc/sysconfig/createfiles << "EOF"
/tmp/.ICE-unix dir 1777 root root
/tmp/.X11-unix dir 1777 root root
EOF

}