summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2005-12-09 15:27:13 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2005-12-09 15:27:13 +0000
commitbde12e65559e2c39eea304420ce27d2c1897fd02 (patch)
treef4032d2cc6de7db5817a23bd585a1bd60ec21935 /x11-apps/xinit
parentversion bump, and this one should finally work with amd64 and other 64bit arches (diff)
downloadhistorical-bde12e65559e2c39eea304420ce27d2c1897fd02.tar.gz
historical-bde12e65559e2c39eea304420ce27d2c1897fd02.tar.bz2
historical-bde12e65559e2c39eea304420ce27d2c1897fd02.zip
Unused file.
Package-Manager: portage-2.0.53
Diffstat (limited to 'x11-apps/xinit')
-rw-r--r--x11-apps/xinit/ChangeLog7
-rw-r--r--x11-apps/xinit/files/gentoo-startx-customization-0.99.3.patch154
-rw-r--r--x11-apps/xinit/files/gentoo-startx-customization.patch147
3 files changed, 6 insertions, 302 deletions
diff --git a/x11-apps/xinit/ChangeLog b/x11-apps/xinit/ChangeLog
index 15cf5b3f7264..7c54e4667a81 100644
--- a/x11-apps/xinit/ChangeLog
+++ b/x11-apps/xinit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-apps/xinit
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.26 2005/12/09 06:52:12 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.27 2005/12/09 15:27:13 spyderous Exp $
+
+ 09 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>;
+ -files/gentoo-startx-customization-0.99.3.patch,
+ -files/gentoo-startx-customization.patch:
+ Unused file.
09 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>;
-xinit-0.99.2-r1.ebuild, -xinit-0.99.3.ebuild:
diff --git a/x11-apps/xinit/files/gentoo-startx-customization-0.99.3.patch b/x11-apps/xinit/files/gentoo-startx-customization-0.99.3.patch
deleted file mode 100644
index ca9b2ecefec9..000000000000
--- a/x11-apps/xinit/files/gentoo-startx-customization-0.99.3.patch
+++ /dev/null
@@ -1,154 +0,0 @@
---- startx.cpp.old 2005-11-11 12:29:49.244146352 -0700
-+++ startx.cpp 2005-11-11 12:34:11.169327672 -0700
-@@ -64,8 +64,6 @@
-
- userserverrc=$HOME/.xserverrc
- sysserverrc=XINITDIR/xserverrc
--defaultclient=BINDIR/xterm
--defaultserver=BINDIR/X
- defaultclientargs=""
- defaultserverargs="-nolisten tcp -br"
- clientargs=""
-@@ -107,60 +105,41 @@
- whoseargs="client"
- while [ x"$1" != x ]; do
- case "$1" in
-- XCOMM '' required to prevent cpp from treating "/*" as a C comment.
-- /''*|\./''*)
-- if [ "$whoseargs" = "client" ]; then
-- if [ x"$clientargs" = x ]; then
-- client="$1"
-- else
-- clientargs="$clientargs $1"
-- fi
-- else
-- if [ x"$serverargs" = x ]; then
-- server="$1"
-- else
-- serverargs="$serverargs $1"
-- fi
-- fi
-- ;;
-- --)
-- whoseargs="server"
-- ;;
-- *)
-- if [ "$whoseargs" = "client" ]; then
-- clientargs="$clientargs $1"
-- else
-- XCOMM display must be the FIRST server argument
-- if [ x"$serverargs" = x ] && @@
-- expr "$1" : ':[0-9][0-9]*$' > /dev/null 2>&1; then
-- display="$1"
-- else
-- serverargs="$serverargs $1"
-- fi
-- fi
-- ;;
-+ /''*|\.*) if [ "$whoseargs" = "client" ]; then
-+ if [ "x$clientargs" = x ]; then
-+ clientargs="$1"
-+ else
-+ clientargs="$clientargs $1"
-+ fi
-+ else
-+ if [ "x$serverargs" = x ]; then
-+ serverargs="$1"
-+ else
-+ serverargs="$serverargs $1"
-+ fi
-+ fi ;;
-+ --) whoseargs="server" ;;
-+ *) if [ "$whoseargs" = "client" ]; then
-+ if [ "x$clientargs" = x ]; then
-+ clientargs="$defaultclientargs $1"
-+ else
-+ clientargs="$clientargs $1"
-+ fi
-+ else
-+ case "$1" in
-+ :[0-9]*) display="$1"; serverargs="$serverargs $1";;
-+ *) serverargs="$serverargs $1" ;;
-+ esac
-+ fi ;;
- esac
- shift
- done
-
--XCOMM process client arguments
--if [ x"$client" = x ]; then
-- XCOMM if no client arguments either, use rc file instead
-- if [ x"$clientargs" = x ]; then
-- client="$defaultclientargs"
-- else
-- client=$defaultclient
-- fi
-+if [ x"$clientargs" = x ]; then
-+ clientargs="$defaultclientargs"
- fi
--
--XCOMM process server arguments
--if [ x"$server" = x ]; then
-- XCOMM if no server arguments or display either, use rc file instead
-- if [ x"$serverargs" = x -a x"$display" = x ]; then
-- server="$defaultserverargs"
-- else
-- server=$defaultserver
-- fi
-+if [ x"$serverargs" = x ]; then
-+ serverargs="$defaultserverargs"
- fi
-
- if [ x"$XAUTHORITY" = x ]; then
-@@ -217,15 +196,8 @@
-
- #endif
-
--#if defined(__SCO__) || defined(__UNIXWARE__)
--if [ "$REMOTE_SERVER" = "TRUE" ]; then
-- exec SHELL_CMD ${client}
--else
-- BINDIR/xinit $client $clientargs -- $server $display $serverargs
--fi
--#else
--BINDIR/xinit $client $clientargs -- $server $display $serverargs
--#endif
-+cleanup() {
-+ [ -n "$PID" ] && kill $PID > /dev/null 2>&1
-
- if [ x"$removelist" != x ]; then
- BINDIR/xauth remove $removelist
-@@ -251,3 +223,15 @@
- #if defined(sun)
- kbd_mode -a
- #endif
-+}
-+
-+
-+trap cleanup 0
-+
-+xinit $clientargs -- $serverargs -deferglyphs 16 &
-+
-+PID=$!
-+
-+wait $PID
-+
-+unset PID
---- xinit.c.old 2005-11-11 12:30:19.199592432 -0700
-+++ xinit.c 2005-11-11 12:30:47.983216656 -0700
-@@ -446,6 +446,7 @@
- signal(SIGINT, sigCatch);
- signal(SIGHUP, sigCatch);
- signal(SIGPIPE, sigCatch);
-+ signal(SIGTERM, sigCatch);
- #else
- /* Let those signal interrupt the wait() call in the main loop */
- memset(&sa, 0, sizeof sa);
-@@ -458,6 +459,7 @@
- sigaction(SIGINT, &sa, NULL);
- sigaction(SIGHUP, &sa, NULL);
- sigaction(SIGPIPE, &sa, NULL);
-+ sigaction(SIGTERM, &sa, NULL);
- #endif
- signal(SIGALRM, sigAlarm);
- signal(SIGUSR1, sigUsr1);
diff --git a/x11-apps/xinit/files/gentoo-startx-customization.patch b/x11-apps/xinit/files/gentoo-startx-customization.patch
deleted file mode 100644
index f1246d84f4e0..000000000000
--- a/x11-apps/xinit/files/gentoo-startx-customization.patch
+++ /dev/null
@@ -1,147 +0,0 @@
---- XFree86-4.2.99.3/xc/programs/xinit/startx.cpp.startx 2002-09-19 02:19:38.000000000 +0200
-+++ XFree86-4.2.99.3/xc/programs/xinit/startx.cpp 2002-12-23 13:13:22.000000000 +0100
-@@ -52,8 +52,6 @@
- userserverrc=$HOME/.xserverrc
- sysclientrc=XINITDIR/xinitrc
- sysserverrc=XINITDIR/xserverrc
--defaultclient=BINDIR/xterm
--defaultserver=BINDIR/X
- defaultclientargs=""
- defaultserverargs=""
- clientargs=""
-@@ -82,60 +80,41 @@
- whoseargs="client"
- while [ x"$1" != x ]; do
- case "$1" in
-- XCOMM '' required to prevent cpp from treating "/*" as a C comment.
-- /''*|\./''*)
-- if [ "$whoseargs" = "client" ]; then
-- if [ x"$clientargs" = x ]; then
-- client="$1"
-- else
-- clientargs="$clientargs $1"
-- fi
-- else
-- if [ x"$serverargs" = x ]; then
-- server="$1"
-- else
-- serverargs="$serverargs $1"
-- fi
-- fi
-- ;;
-- --)
-- whoseargs="server"
-- ;;
-- *)
-- if [ "$whoseargs" = "client" ]; then
-- clientargs="$clientargs $1"
-- else
-- XCOMM display must be the FIRST server argument
-- if [ x"$serverargs" = x ] && @@
-- expr "$1" : ':[0-9][0-9]*$' > /dev/null 2>&1; then
-- display="$1"
-- else
-- serverargs="$serverargs $1"
-- fi
-- fi
-- ;;
-+ /''*|\.*) if [ "$whoseargs" = "client" ]; then
-+ if [ "x$clientargs" = x ]; then
-+ clientargs="$1"
-+ else
-+ clientargs="$clientargs $1"
-+ fi
-+ else
-+ if [ "x$serverargs" = x ]; then
-+ serverargs="$1"
-+ else
-+ serverargs="$serverargs $1"
-+ fi
-+ fi ;;
-+ --) whoseargs="server" ;;
-+ *) if [ "$whoseargs" = "client" ]; then
-+ if [ "x$clientargs" = x ]; then
-+ clientargs="$defaultclientargs $1"
-+ else
-+ clientargs="$clientargs $1"
-+ fi
-+ else
-+ case "$1" in
-+ :[0-9]*) display="$1"; serverargs="$serverargs $1";;
-+ *) serverargs="$serverargs $1" ;;
-+ esac
-+ fi ;;
- esac
- shift
- done
-
--XCOMM process client arguments
--if [ x"$client" = x ]; then
-- XCOMM if no client arguments either, use rc file instead
-- if [ x"$clientargs" = x ]; then
-- client="$defaultclientargs"
-- else
-- client=$defaultclient
-- fi
-+if [ x"$clientargs" = x ]; then
-+ clientargs="$defaultclientargs"
- fi
--
--XCOMM process server arguments
--if [ x"$server" = x ]; then
-- XCOMM if no server arguments or display either, use rc file instead
-- if [ x"$serverargs" = x -a x"$display" = x ]; then
-- server="$defaultserverargs"
-- else
-- server=$defaultserver
-- fi
-+if [ x"$serverargs" = x ]; then
-+ serverargs="$defaultserverargs"
- fi
-
- if [ x"$XAUTHORITY" = x ]; then
-@@ -172,7 +151,9 @@
- done
- #endif
-
--xinit $client $clientargs -- $server $display $serverargs
-+cleanup() {
-+ [ -n "$PID" ] && kill $PID > /dev/null 2>&1
-+
-
- if [ x"$removelist" != x ]; then
- xauth remove $removelist
-@@ -195,3 +176,15 @@
- #if defined(sun) && !defined(i386)
- kbd_mode -a
- #endif
-+}
-+
-+
-+trap cleanup 0
-+
-+xinit $clientargs -- $serverargs -deferglyphs 16 &
-+
-+PID=$!
-+
-+wait $PID
-+
-+unset PID
---- XFree86-4.2.99.3/xc/programs/xinit/xinit.c.startx 2002-05-31 20:46:13.000000000 +0200
-+++ XFree86-4.2.99.3/xc/programs/xinit/xinit.c 2002-12-23 13:27:35.000000000 +0100
-@@ -431,6 +431,7 @@
- signal(SIGINT, sigCatch);
- signal(SIGHUP, sigCatch);
- signal(SIGPIPE, sigCatch);
-+ signal(SIGTERM, sigCatch);
- #else
- /* Let those signal interrupt the wait() call in the main loop */
- memset(&sa, 0, sizeof sa);
-@@ -442,6 +443,7 @@
- sigaction(SIGINT, &sa, NULL);
- sigaction(SIGHUP, &sa, NULL);
- sigaction(SIGPIPE, &sa, NULL);
-+ sigaction(SIGTERM, &sa, NULL);
- #endif
- signal(SIGALRM, sigAlarm);
- signal(SIGUSR1, sigUsr1);