1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-21 08:04:27 -05:00
gbootroot/add-ons/yard/make-debian-X11/pkg/dpkg/make-debian-x11.postinst

67 lines
1.4 KiB
Perl
Executable File

#!/usr/bin/perl -w
# make-debian-x11.postinst
# Jonathan Rosenbaum <freesource@users.sourceforge.net>
use strict;
use Debconf::Client::ConfModule ':all';
if ($ARGV[0] && $ARGV[0] eq "configure") {
if (-d "/usr/doc" && !-e "/usr/doc/make-debian-x11" &&
-d "/usr/share/doc/make-debian-x11") {
system "ln -sf ../share/doc/make-debian-x11 /usr/doc/make-debian-x11";
}
}
my $answer = get("make-debian-x11/make_debian_x11");
if ($answer eq "true") {
my $swim = get("make-debian-x11/make_debian_x11-swim");
my $doc = get("make-debian-x11/make_debian_x11-doc");
my $zoneinfo = get("make-debian-x11/make_debian_x11-zoneinfo");
if ($doc eq "true") {
$doc = "yes\n";
}
else {
$doc = "no\n";
}
if ($zoneinfo eq "true") {
$zoneinfo = "yes\n";
}
else {
$zoneinfo = "no\n";
}
if ($swim) {
if ($swim eq "true") {
$swim = "yes\n";
}
else {
$swim = "no\n";
}
}
if (!$swim) {
open (SCRIPT, "|make_debian-X11")
or warn "Couldn't open make_debian-X11\n";
print SCRIPT $doc;
print SCRIPT $zoneinfo;
close(SCRIPT);
}
else {
print STDERR "Be patient, this will take a little while.\n";
open (SCRIPT, "|make_debian-X11 2&> /dev/null")
or warn "Couldn't open make_debian-X11\n";
print SCRIPT $swim;
print SCRIPT $doc;
print SCRIPT $zoneinfo;
close(SCRIPT);
set("make-debian-x11/make_debian_x11-swim","");
}
}
stop();