diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2007-12-03 16:36:09 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2007-12-03 16:36:09 +0000 |
commit | 826f7b562d58ccf699fcef5e198c76996e86e222 (patch) | |
tree | 1a62b9fd9d6df6f747e6fc54a3c4685b4d9c8494 /xfce-base/xfce-utils/files | |
parent | Ensure the right directories are owned by the user:group for this pkg. bug #1... (diff) | |
download | historical-826f7b562d58ccf699fcef5e198c76996e86e222.tar.gz historical-826f7b562d58ccf699fcef5e198c76996e86e222.tar.bz2 historical-826f7b562d58ccf699fcef5e198c76996e86e222.zip |
Regression fix, default to -nolisten tcp again, thanks to amne for reporting.
Package-Manager: portage-2.1.4_rc4
Diffstat (limited to 'xfce-base/xfce-utils/files')
-rw-r--r-- | xfce-base/xfce-utils/files/digest-xfce-utils-4.4.2-r1 | 3 | ||||
-rw-r--r-- | xfce-base/xfce-utils/files/xfce-utils-4.4.2-nolisten-tcp.patch | 19 |
2 files changed, 22 insertions, 0 deletions
diff --git a/xfce-base/xfce-utils/files/digest-xfce-utils-4.4.2-r1 b/xfce-base/xfce-utils/files/digest-xfce-utils-4.4.2-r1 new file mode 100644 index 000000000000..8cfbeda63456 --- /dev/null +++ b/xfce-base/xfce-utils/files/digest-xfce-utils-4.4.2-r1 @@ -0,0 +1,3 @@ +MD5 119dd3f1daedfa41e3be89bad8997336 xfce-utils-4.4.2.tar.bz2 596712 +RMD160 7be37ec67faba686d1d329318ca68f4dc0e81ce1 xfce-utils-4.4.2.tar.bz2 596712 +SHA256 eba910fb99598e09fa4c41c4ab405216a2b59a837a3ab058656360ec2324314c xfce-utils-4.4.2.tar.bz2 596712 diff --git a/xfce-base/xfce-utils/files/xfce-utils-4.4.2-nolisten-tcp.patch b/xfce-base/xfce-utils/files/xfce-utils-4.4.2-nolisten-tcp.patch new file mode 100644 index 000000000000..5dcac6db1bae --- /dev/null +++ b/xfce-base/xfce-utils/files/xfce-utils-4.4.2-nolisten-tcp.patch @@ -0,0 +1,19 @@ +diff -ur xfce-utils-4.4.2.orig/scripts/startxfce4.in xfce-utils-4.4.2/scripts/startxfce4.in +--- xfce-utils-4.4.2.orig/scripts/startxfce4.in 2007-11-17 21:31:32.000000000 +0200 ++++ xfce-utils-4.4.2/scripts/startxfce4.in 2007-12-03 18:30:36.000000000 +0200 +@@ -67,12 +67,12 @@ + fi + + if [ -f $BASEDIR/xinitrc ]; then +- exec $prog $BASEDIR/xinitrc $CLIENTRC $SERVERRC ++ exec $prog $BASEDIR/xinitrc $CLIENTRC -- -nolisten tcp $SERVERRC + elif [ -f $HOME/.xfce4/xinitrc ]; then + mkdir -p $BASEDIR + cp $HOME/.xfce4/xinitrc $BASEDIR/ +- exec $prog $BASEDIR/xinitrc $CLIENTRC $SERVERRC ++ exec $prog $BASEDIR/xinitrc $CLIENTRC -- -nolisten tcp $SERVERRC + else +- exec $prog @sysconfdir@/xdg/xfce4/xinitrc $CLIENTRC $SERVERRC ++ exec $prog @sysconfdir@/xdg/xfce4/xinitrc $CLIENTRC -- -nolisten tcp $SERVERRC + fi + |