summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-12-05 16:46:57 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-12-05 16:46:57 +0000
commite2e704f39548c7cb59669e6f2525e6e05f1dc826 (patch)
treee328035d0202e8814cbe92e11c6f8f9bf8284eff /perl-install/install_gtk.pm
parentc4b21045d06b01e40d4b28d309a1808d8fa2f8ec (diff)
downloaddrakx-backup-do-not-use-e2e704f39548c7cb59669e6f2525e6e05f1dc826.tar
drakx-backup-do-not-use-e2e704f39548c7cb59669e6f2525e6e05f1dc826.tar.gz
drakx-backup-do-not-use-e2e704f39548c7cb59669e6f2525e6e05f1dc826.tar.bz2
drakx-backup-do-not-use-e2e704f39548c7cb59669e6f2525e6e05f1dc826.tar.xz
drakx-backup-do-not-use-e2e704f39548c7cb59669e6f2525e6e05f1dc826.zip
fix syntax & style
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r--perl-install/install_gtk.pm14
1 files changed, 8 insertions, 6 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm
index 0174e8a26..499b344cc 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install_gtk.pm
@@ -45,11 +45,10 @@ sub install_theme {
load_rc($_) foreach "themes-$o->{theme}", "install", "themes";
- my $pango_font_name_10 = "";
- my $pango_font_name_12 = "";
+ my %pango_font_name;
if (my $pango_font = lang::lang2pango_font($o->{lang})) {
- $pango_font_name_10 = "font_name = \"$pango_font 10\""
- $pango_font_name_12 = "font_name = \"$pango_font 12\""
+ $pango_font_name{10} = "font_name = \"$pango_font 10\"";
+ $pango_font_name{12} = "font_name = \"$pango_font 12\"";
}
if (my ($font, $font2) = lang::get_x_fontset($o->{lang}, $::rootwidth < 800 ? 10 : 12)) {
$font2 ||= $font;
@@ -57,12 +56,12 @@ sub install_theme {
style "default-font"
{
fontset = "$font,*"
- $pango_font_name_12
+ $pango_font_name{12}
}
style "small-font"
{
fontset = "$font2,*"
- $pango_font_name_10
+ $pango_font_name{10}
}
widget "*" style "default-font"
widget "*Steps*" style "small-font"
@@ -189,6 +188,9 @@ sub create_logo_window {
#------------------------------------------------------------------------------
sub init_gtk() {
+ symlink("/tmp/stage2/etc/gtk-2.0", "/etc/gtk-2.0");
+ symlink("/tmp/stage2/etc/pango", "/etc/pango");
+ symlink("/tmp/stage2/etc/fonts", "/etc/fonts");
Gtk2->init(\@ARGV);
Gtk2->set_locale;
}