Sophie

Sophie

distrib > Mandriva > 10.1 > i586 > by-pkgid > fe7fd0ab52053bbd28d3ee1e57db85f8 > files > 268

kdebase-3.2.3-134.9.101mdk.src.rpm

#!/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) {
    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!;
    } $file;
}