diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-09-29 09:38:14 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-09-29 09:38:14 +0000 |
commit | e63454021ca8aea64dc0cc05ad6d809e6ca50e07 (patch) | |
tree | 4df09d5e64bda21be09805f19fac3f6a9333545e /x11-misc/virtualgl | |
parent | Version bump, drop old. (diff) | |
download | gentoo-2-e63454021ca8aea64dc0cc05ad6d809e6ca50e07.tar.gz gentoo-2-e63454021ca8aea64dc0cc05ad6d809e6ca50e07.tar.bz2 gentoo-2-e63454021ca8aea64dc0cc05ad6d809e6ca50e07.zip |
Drop old.
(Portage version: 2.1.11.19/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/virtualgl')
-rw-r--r-- | x11-misc/virtualgl/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/virtualgl/files/vgl.confd | 24 | ||||
-rw-r--r-- | x11-misc/virtualgl/files/vgl.initd | 30 |
3 files changed, 5 insertions, 55 deletions
diff --git a/x11-misc/virtualgl/ChangeLog b/x11-misc/virtualgl/ChangeLog index 91f6e47f6eb2..9d18f6651ab7 100644 --- a/x11-misc/virtualgl/ChangeLog +++ b/x11-misc/virtualgl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/virtualgl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/virtualgl/ChangeLog,v 1.6 2012/09/29 09:33:10 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/virtualgl/ChangeLog,v 1.7 2012/09/29 09:38:14 pacho Exp $ + + 29 Sep 2012; Pacho Ramos <pacho@gentoo.org> -files/vgl.confd, + -files/vgl.initd: + Drop old. *virtualgl-2.3.1-r1 (29 Sep 2012) diff --git a/x11-misc/virtualgl/files/vgl.confd b/x11-misc/virtualgl/files/vgl.confd deleted file mode 100644 index a7a4e0ac1283..000000000000 --- a/x11-misc/virtualgl/files/vgl.confd +++ /dev/null @@ -1,24 +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}" - -} -set_xauth diff --git a/x11-misc/virtualgl/files/vgl.initd b/x11-misc/virtualgl/files/vgl.initd deleted file mode 100644 index b1257b904cfa..000000000000 --- a/x11-misc/virtualgl/files/vgl.initd +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/virtualgl/files/vgl.initd,v 1.1 2012/04/21 13:14:47 pacho Exp $ - -# TODO: description="*" and other OpenRC 0.9+ candies - -depend() { - need xdm - after sshd -} - -start() { - ebegin "Starting VirtualGL" - truncate --size=0 /etc/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 /etc/VirtualGL/vgl_xauth_key add $DISPLAY . `xauth -f $XAUTHORITY list | awk '{print $3}'` && \ - chmod 644 /etc/VirtualGL/vgl_xauth_key - eend $? -} - -stop() { - ebegin "Stopping VirtualGL" - [ -f /etc/VirtualGL/vgl_xauth_key ] && \ - rm /etc/VirtualGL/vgl_xauth_key - eend $? -} |