summaryrefslogtreecommitdiff
path: root/repo/x11/xorg-server
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/x11/xorg-server
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/x11/xorg-server')
-rw-r--r--repo/x11/xorg-server/xorg-server.xibuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/repo/x11/xorg-server/xorg-server.xibuild b/repo/x11/xorg-server/xorg-server.xibuild
deleted file mode 100644
index fa261f1..0000000
--- a/repo/x11/xorg-server/xorg-server.xibuild
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="meson ninja doxygen xmlto"
-DEPS="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"
-
-PKG_VER=21.1.3
-SOURCE=https://www.x.org/pub/individual/xserver/xorg-server-$PKG_VER.tar.xz
-
-build () {
- mkdir build &&
- cd build &&
-
- meson --prefix=$XORG_PREFIX \
- -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
-
- 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
-
-}