summaryrefslogtreecommitdiffstats
path: root/perl-install/patch
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/patch')
-rw-r--r--perl-install/patch/patch-IMPS2.pl9
-rw-r--r--perl-install/patch/patch-da.pl6
2 files changed, 15 insertions, 0 deletions
diff --git a/perl-install/patch/patch-IMPS2.pl b/perl-install/patch/patch-IMPS2.pl
new file mode 100644
index 000000000..488b6ac11
--- /dev/null
+++ b/perl-install/patch/patch-IMPS2.pl
@@ -0,0 +1,9 @@
+use install_gtk;
+package install_gtk;
+
+my $old_createXconf = \&createXconf;
+undef *createXconf;
+*createXconf = sub {
+ symlink 'mouse', '/dev/cdrom';
+ &$old_createXconf;
+}
diff --git a/perl-install/patch/patch-da.pl b/perl-install/patch/patch-da.pl
new file mode 100644
index 000000000..63a9f76d5
--- /dev/null
+++ b/perl-install/patch/patch-da.pl
@@ -0,0 +1,6 @@
+use common;
+
+log::l("PATCHING: installing mo");
+my $dir = '/usr/share/locale_special/da/LC_MESSAGES';
+mkdir_p($dir);
+system("gzip -dc /mnt/da_mo.gz > $dir/libDrakX.mo");