summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-10-04 15:23:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-10-04 15:23:24 +0000
commit90a320600eae148615e5756bca8e4a689dfdf22c (patch)
treeabb1f9dbcbeecd02172f97a2f0ec2bf9f8b81d1e /perl-install/install_steps_gtk.pm
parentc7eddd054fbb275055591d87b6260d566e86761d (diff)
downloaddrakx-backup-do-not-use-90a320600eae148615e5756bca8e4a689dfdf22c.tar
drakx-backup-do-not-use-90a320600eae148615e5756bca8e4a689dfdf22c.tar.gz
drakx-backup-do-not-use-90a320600eae148615e5756bca8e4a689dfdf22c.tar.bz2
drakx-backup-do-not-use-90a320600eae148615e5756bca8e4a689dfdf22c.tar.xz
drakx-backup-do-not-use-90a320600eae148615e5756bca8e4a689dfdf22c.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm41
1 files changed, 34 insertions, 7 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index 2ea992470..1090ed103 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -522,17 +522,44 @@ sub installPackages {
undef *install_any::changeMedium;
*install_any::changeMedium = sub {
my ($method, $medium) = @_;
- my $msg =
-_("Change your Cd-Rom!
-
-Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.
-If you don't have it, press Cancel to avoid installation from this Cd-Rom.", pkgs::mediumDescr($o->{packages}, $medium));
#- if not using a cdrom medium, always abort.
$method eq 'cdrom' and do {
local $my_gtk::grab = 1;
- print "\a";
- $o->ask_okcancel('', $msg);
+ my $name = pkgs::mediumDescr($o->{packages}, $medium);
+ print "\a";
+ $name !~ /application/ || ($o->{useless_thing_accepted2} ||= $o->ask_from_list_('', formatAlaTeX(_("
+Warning
+
+Please read carefully the terms below. If you disagree with any
+portion, you are not allowed to install the next CD media. Press 'Cancel'
+to continue the installation without using these media.
+
+
+Some components contained in the next CD media are not governed
+by the GPL License or similar agreements. Each such component is then
+governed by the terms and conditions of its own specific license.
+Please read carefully and comply with such specific licenses before
+you use or redistribute the said components.
+Such licenses will in general prevent the transfer, duplication
+(except for backup purposes), redistribution, reverse engineering,
+de-assembly, de-compilation or modification of the component.
+Any breach of agreement will immediately terminate your rights under
+the specific license. Unless the specific license terms grant you such
+rights, you usually cannot install the programs on more than one
+system, or adapt it to be used on a network. In doubt, please contact
+directly the distributor or editor of the component.
+Transfer to third parties or copying of such components including the
+documentation is usually forbidden.
+
+
+All rights to the components of the next CD media belong to their
+respective authors and are protected by intellectual property and
+copyright laws applicable to software programs.
+")), [ __("Accept"), __("Refuse") ], "Accept") eq "Accept") and $o->ask_okcancel('', _("Change your Cd-Rom!
+
+Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.
+If you don't have it, press Cancel to avoid installation from this Cd-Rom.", $name));
};
};
catch_cdie { $o->install_steps::installPackages($packages); }