diff options
author | marcus <marcus@FreeBSD.org> | 2006-05-04 14:02:14 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-05-04 14:02:14 +0800 |
commit | 60545be7485923a61d6f1786a6015259a6cee274 (patch) | |
tree | e0f4afd75d6450652df91e6fc701d22af5b968c9 /x11/gdm/files | |
parent | 316a3f4509ef74e430edbcaec9603d92bf2c2235 (diff) | |
download | freebsd-ports-gnome-60545be7485923a61d6f1786a6015259a6cee274.tar.gz freebsd-ports-gnome-60545be7485923a61d6f1786a6015259a6cee274.tar.zst freebsd-ports-gnome-60545be7485923a61d6f1786a6015259a6cee274.zip |
Update to 2.14.5.
Diffstat (limited to 'x11/gdm/files')
-rw-r--r-- | x11/gdm/files/patch-gui_greeter_gdmthemetester.in | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/x11/gdm/files/patch-gui_greeter_gdmthemetester.in b/x11/gdm/files/patch-gui_greeter_gdmthemetester.in deleted file mode 100644 index 988efc3fbd84..000000000000 --- a/x11/gdm/files/patch-gui_greeter_gdmthemetester.in +++ /dev/null @@ -1,112 +0,0 @@ ---- gui/greeter/gdmthemetester.in.orig Wed Apr 12 01:57:25 2006 -+++ gui/greeter/gdmthemetester.in Wed Apr 12 01:57:12 2006 -@@ -0,0 +1,109 @@ -+#!/bin/sh -+ -+gdmwhich () { -+ COMMAND="$1" -+ OUTPUT= -+ IFS=: -+ for dir in $PATH -+ do -+ if test -x "$dir/$COMMAND" ; then -+ if test "x$OUTPUT" = "x" ; then -+ OUTPUT="$dir/$COMMAND" -+ fi -+ fi -+ done -+ IFS=$OLD_IFS -+ echo "$OUTPUT" -+} -+ -+echo -+echo "GDM Theme Tester" -+echo -+echo "Be sure to test all the environments:" -+echo " console, console-timed, flexi, remote-flexi, xdmcp" -+echo "Also be sure to test using caps lock" -+echo -+ -+XNEST=`gdmwhich Xnest` -+GDMXNEST=`gdmwhich gdmXnest` -+GDMGREETER="@libexecdir@/gdmgreeter" -+ -+if [ x$XNEST = x ]; then -+ echo "ERROR: Xnest not found" -+ echo "" -+ exit 1 -+fi -+ -+if [ x$GDMXNEST = x ]; then -+ echo "ERROR: gdmXnest not found" -+ echo "" -+ exit 1 -+fi -+ -+if [ x$GDMGREETER = x ]; then -+ echo "ERROR: gdmgreeter not found" -+ echo "" -+ exit 1 -+fi -+ -+USAGE=" -+Usage: $0 <environment> <theme> -+<environment> is one of: console, console-timed, flexi, remote-flexi, xdmcp -+<theme> is either the path of the theme or the name of an installed theme -+ -+If you set the environment variable XNESTSIZE to <width>x<height> (e.g. 800x600) -+you can test the greeter at that resolution -+" -+if [ "$#" != 2 ]; then -+ echo "$USAGE" -+ exit 1 -+fi -+ -+GDM_THEME="$2" -+DOING_GDM_DEVELOPMENT=yes -+GDM_PARENT_DISPLAY="$DISPLAY" -+export GDM_THEME DOING_GDM_DEVELOPMENT GDM_PARENT_DISPLAY -+ -+case $1 in -+console) -+ GDM_IS_LOCAL=yes -+ export GDM_IS_LOCAL -+ ;; -+console-timed) -+ GDM_IS_LOCAL=yes -+ GDM_FAKE_TIMED=yes -+ export GDM_IS_LOCAL GDM_FAKE_TIMED -+ ;; -+flexi) -+ GDM_IS_LOCAL=yes -+ GDM_FLEXI_SERVER=yes -+ export GDM_IS_LOCAL GDM_FLEXI_SERVER -+ ;; -+remote-flexi) -+ GDM_FLEXI_SERVER=yes -+ export GDM_FLEXI_SERVER -+ ;; -+xdmcp) -+ ;; -+*) -+ echo "$USAGE" -+ exit 1 -+ ;; -+esac -+ -+if [ "x$XNESTSIZE" = x ] ; then -+ eval `gdmXnest -b` -+else -+ eval `gdmXnest -b -o "-geometry $XNESTSIZE"` -+fi -+export DISPLAY -+ -+if [ "x$GDM_PARENT_DISPLAY" = "x$DISPLAY" ]; then -+ echo "ERROR: Can't start the Xnest server" -+ exit 1 -+fi -+ -+# This may not be necessary -+sleep 1 -+ -+@libexecdir@/gdmgreeter |