summaryrefslogtreecommitdiffstats
path: root/mandriva/2010.2/kdebase/kdm-migrate.pl
diff options
context:
space:
mode:
authoralbator <albator@arcadia.vtf>2011-10-21 20:16:07 +0200
committeralbator <albator@arcadia.vtf>2011-10-21 20:16:07 +0200
commit7a0adf35896618a7570e425941fc1b74c54def47 (patch)
tree16dab9d8bfbd93575440f357c70907cbb5480980 /mandriva/2010.2/kdebase/kdm-migrate.pl
parentcd71be65dc30c8007ec54becdf6c50260ed8e908 (diff)
parenta8707e2a9f22d082cecb8ea6079175076f983c55 (diff)
downloadtde-packaging-7a0adf35896618a7570e425941fc1b74c54def47.tar.gz
tde-packaging-7a0adf35896618a7570e425941fc1b74c54def47.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'mandriva/2010.2/kdebase/kdm-migrate.pl')
-rwxr-xr-xmandriva/2010.2/kdebase/kdm-migrate.pl35
1 files changed, 35 insertions, 0 deletions
diff --git a/mandriva/2010.2/kdebase/kdm-migrate.pl b/mandriva/2010.2/kdebase/kdm-migrate.pl
new file mode 100755
index 000000000..89a20b395
--- /dev/null
+++ b/mandriva/2010.2/kdebase/kdm-migrate.pl
@@ -0,0 +1,35 @@
+#!/usr/bin/perl
+
+# Copyright: MandrakeSoft, licensed under the GPL v2.
+# modified by Laurent Montel <lmontel@mandrakesoft.com>
+
+use strict;
+use MDK::Common;
+
+foreach my $file (@ARGV) {
+ my $no_theme;
+ # grep return 0 if a match is found
+ $no_theme = 1 if `grep -q -s '^UseTheme=' $file` ;
+ substInFile {
+ if (/SystemPath=(.*)$/) {
+ my $result = $1;
+ s!$!:/usr/X11R6/bin/! if $result !~ m!/usr/X11R6/bin/!;
+ }
+ if (/UserPath=(.*)$/) {
+ my $result = $1;
+ s!$!:/usr/X11R6/bin/! if $result !~ m!/usr/X11R6/bin/!;
+ }
+ s!^(Setup)=.*!$1=/etc/X11/xdm/Xsetup_0!;
+ s!^(Startup)=.*!$1=/etc/X11/xdm/GiveConsole!;
+ s!^(Reset)=.*!$1=/etc/X11/xdm/TakeConsole!;
+ s!^(Xserver)=.*!$1=/etc/X11/xdm/Xservers\nServerVTs=-7\n!;
+ if ($no_theme) {
+ s!^(AuthComplain)=.*!$1=AuthComplain=false\nUseTheme=true\nTheme=/usr/share/mdk/dm!;
+ } else {
+ s!^(AuthComplain)=.*!AuthComplain=false!;
+ }
+
+ } $file;
+}
+
+