diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-09-29 19:23:25 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-09-29 19:44:55 +0200 |
commit | 8559c1e2a2160dc99977e7d2e6c8b31838c3e852 (patch) | |
tree | 1df109b85bd8bf1a3febb8233dc42c8f1bded74a /x11-misc/virtualgl/files | |
parent | x11-misc/virtualgl: Update metadata with updated mail address (#595000#c4 by ... (diff) | |
download | gentoo-8559c1e2a2160dc99977e7d2e6c8b31838c3e852.tar.gz gentoo-8559c1e2a2160dc99977e7d2e6c8b31838c3e852.tar.bz2 gentoo-8559c1e2a2160dc99977e7d2e6c8b31838c3e852.zip |
x11-misc/virtualgl: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'x11-misc/virtualgl/files')
-rw-r--r-- | x11-misc/virtualgl/files/vgl.confd-r1 | 27 | ||||
-rw-r--r-- | x11-misc/virtualgl/files/vgl.initd-r2 | 30 |
2 files changed, 0 insertions, 57 deletions
diff --git a/x11-misc/virtualgl/files/vgl.confd-r1 b/x11-misc/virtualgl/files/vgl.confd-r1 deleted file mode 100644 index d56414d41110..000000000000 --- a/x11-misc/virtualgl/files/vgl.confd-r1 +++ /dev/null @@ -1,27 +0,0 @@ -# /etc/conf.d/vgl - -DISPLAY="${DISPLAY:-:0}" - -# Make it a function in case we have to repeat it in init script later -set_xauth() { - -# common case (works in almost all tested environments (except of lightdm)): -XAUTHORITY="$(ps wwax -C X,Xorg -o args= --sort=-stime | grep -m 1 -o '\B[-]auth\s*/var\S*auth\S*' | cut -d ' ' -f 2)" - -# kdm and some others: -# XAUTHORITY="$(find /var/run/xauth/A${DISPLAY}-*|tail -n1)" - -# gdm: -# XAUTHORITY="/var/gdm/${DISPLAY}.Xauth" - -# slim: -# XAUTHORITY="/var/run/slim.auth" - -# lightdm: -# XAUTHORITY="/var/run/lightdm/root/${DISPLAY}" - -# lxdm: -# XAUTHORITY="/var/run/lxdm/lxdm-${DISPLAY}.auth" - -} -set_xauth diff --git a/x11-misc/virtualgl/files/vgl.initd-r2 b/x11-misc/virtualgl/files/vgl.initd-r2 deleted file mode 100644 index 6b1e6d6be1aa..000000000000 --- a/x11-misc/virtualgl/files/vgl.initd-r2 +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# TODO: description="*" and other OpenRC 0.9+ candies - -depend() { - need xdm - after sshd -} - -start() { - ebegin "Starting VirtualGL" - truncate --size=0 /var/lib/VirtualGL/vgl_xauth_key - - # Check if XAUTHORITY was set successfully, if not wait a bit and let X to start - [ -z "$XAUTHORITY" ] && sleep 3 && set_xauth - [ -e "$XAUTHORITY" ] || sleep 3 - xauth -f /var/lib/VirtualGL/vgl_xauth_key add $DISPLAY . `xauth -f $XAUTHORITY list | awk '{print $3;exit}'` && \ - chmod 644 /var/lib/VirtualGL/vgl_xauth_key - eend $? -} - -stop() { - ebegin "Stopping VirtualGL" - [ -f /var/lib/VirtualGL/vgl_xauth_key ] && \ - rm /var/lib/VirtualGL/vgl_xauth_key - eend $? -} |