freebsd-ports/x11/login.app/files/patch-ae
Maxim Sobolev 072be54a75 - Update to 2.0.0.a7;
- make it PREFIX, X11BASE and LOCALBASE clean;
- adjust default font, so login.app should work OOB;
- new MASTER_SITE and WWW;
- make GNUstep theme default theme instead of Linux one (it's nasty to see
  big `LINUX' letters on FreeBSD login screen ;);
- adjust scripts, so `Restart' and `Power-off' buttons work just OOB.

Update prompted by:	Thomas Spreng <spreng@iamexwi.unibe.ch>
2000-12-14 09:01:23 +00:00

46 lines
1.2 KiB
Text

--- Scripts/Login.user.orig Sat Nov 11 09:24:21 2000
+++ Scripts/Login.user Thu Dec 14 10:43:08 2000
@@ -1,32 +1,32 @@
#!/bin/sh
-PATH="/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
+PATH="/bin:/usr/bin:%%LOCALBASE%%/bin:%%X11BASE%%/bin"
#
# Try to find the user's init script for X.
# 1) Look for ~/.xinitrc
# 2) Look for ~/.xsession
# 3) Look for ~/.Xclients
-# 4) Look for /etc/X11/xinit/xinitrc
-# 5) Look for /usr/X11R6/bin/twm
-# 6) Look for /usr/X11R6/bin/xterm
+# 4) Look for %%X11BASE%%/lib/X11/xinit/xinitrc
+# 5) Look for %%X11BASE%%/bin/twm
+# 6) Look for %%X11BASE%%/bin/xterm
#
xinitrc=$HOME/.xinitrc
xsession=$HOME/.xsession
xclients=$HOME/.Xclients
-systemxinitrc=/etc/X11/xinit/xinitrc
-twm=/usr/X11R6/bin/twm
-xterm=/usr/X11R6/bin/xterm
+systemxinitrc=%%X11BASE%%/lib/X11/xinit/xinitrc
+twm=%%X11BASE%%/bin/twm
+xterm=%%X11BASE%%/bin/xterm
if [ -r $xinitrc ]; then
- exec sh -login $xinitrc
+ exec sh $xinitrc
elif [ -r $xsession ]; then
- exec sh -login $xsession
+ exec sh $xsession
elif [ -r $xclients ]; then
- exec sh -login $xclients
+ exec sh $xclients
elif [ -r $systemxinitrc ]; then
- exec sh -login $systemxinitrc
+ exec sh $systemxinitrc
elif [ -x $twm ]; then
exec $twm
elif [ -x $xterm ]; then