From 6d2404960209d5ee11616e7a6948d02329696287 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Thu, 6 Dec 2018 15:58:34 -0200 Subject: [PATCH] xpra: fix location of X11/xorg.conf.d file --- srcpkgs/xpra/template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/xpra/template b/srcpkgs/xpra/template index fe669ae815e..9aa984de01b 100644 --- a/srcpkgs/xpra/template +++ b/srcpkgs/xpra/template @@ -1,7 +1,7 @@ # Template file for 'xpra' pkgname=xpra version=2.4.2 -revision=1 +revision=2 build_style=python2-module pycompile_module="xpra" hostmakedepends="pkg-config python-Cython" @@ -33,4 +33,7 @@ post_extract() { post_install() { sed -i "s:${DESTDIR/\/\//\/}::" ${DESTDIR}/etc/xpra/conf.d/55_server_x11.conf rm -rf ${DESTDIR}/etc/init.d + + vmkdir usr/share/X11/xorg.conf.d + mv ${DESTDIR}/etc/X11/xorg.conf.d/* ${DESTDIR}/usr/share/X11/xorg.conf.d }