summaryrefslogtreecommitdiffstats
path: root/debian/config
diff options
context:
space:
mode:
authoreyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-28 07:54:52 +0000
committereyck <eyck@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-28 07:54:52 +0000
commit22f0bb22c5a5405bdfb3aaf3ce2ae555c83e4cc6 (patch)
tree293e87f64b28c33898569b8ffe6cd3aded56b8a5 /debian/config
parentba516b3a40acfc92f59ad786119b0594d5e5a98e (diff)
downloadmpv-22f0bb22c5a5405bdfb3aaf3ce2ae555c83e4cc6.tar.bz2
mpv-22f0bb22c5a5405bdfb3aaf3ce2ae555c83e4cc6.tar.xz
update to perl debconf. fixed problem with configure.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1399 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'debian/config')
-rwxr-xr-xdebian/config98
1 files changed, 98 insertions, 0 deletions
diff --git a/debian/config b/debian/config
new file mode 100755
index 0000000000..e78546ec40
--- /dev/null
+++ b/debian/config
@@ -0,0 +1,98 @@
+#!/usr/bin/perl -w
+
+# Script to configure mplayer
+# based on etherconf by John Goerzen <jgoerzen@progenylinux.com>
+
+use Debian::DebConf::Client::ConfModule qw(:all);
+
+my $version = version(2.0);
+title('MPlayer Configuration');
+my $PRIORITY = 'high';
+#TODO: 'medium'
+my $next = 'mainmenu';
+my $isediting = 0;
+
+my @nextargs = ();
+
+checkupgrade(); # Find out if we have to upgrade.
+mainloop(letsgo());
+
+sub checkupgrade {
+ open(MCFG, "</etc/mplayer.conf") || return 1;
+ my $line = <MCFG>;
+ return 1 if ($line =~ /mplayer DEBCONF AREA/);
+ exit(0) if (input($PRIORITY, 'mplayer/replace-existing-files') eq "question skipped");
+ go();
+ if (get('mplayer/replace-existing-files') eq 'false') {
+ input($PRIORITY, 'mplayer/replace-existing-files-bail');
+ go();
+ exit();
+ }
+ close MCFG;
+}
+
+sub mainloop {
+ $next = shift @_;
+ do {
+ my @retval = &$next(@nextargs);
+ # if ($retval[0] eq 'BACK') {
+ # $retval[0] = $backups{$next};
+ # }
+ ($next, @nextargs) = @retval;
+ } while ($next ne 'Exit');
+}
+
+sub letsgo {
+#useless!
+ return "configure";
+}
+
+sub configure {
+ subst("mplayer/voutput", "vochoices", "xv, xmga, mga, x11, gl, sdl");
+ # db_subst mplayer/output vo xc,xmga,mga,x11,gl,sdl
+ exit(0) if (input($PRIORITY, "mplayer/voutput") eq "question skipped");
+ go();
+ exit 0 unless (get("mplayer/voutput") eq 'true');
+ #return 'audioout';
+ return 'mainmenu';
+}
+
+sub mainmenu {
+ go(); # To catch spare things from before
+ my @choices = (
+ 'Video Output: ' . scalar(get("mplayer/voutput")));
+ #,
+ $choices = join(', ', @choices);
+ $isediting = 1;
+
+ subst('mplayer/mainmenu', 'choices', $choices);
+ input($PRIORITY, 'mplayer/mainmenu');
+ go();
+
+ my $selection = get('mplayer/mainmenu');
+ if ($selection =~ /^Exit/) {
+ return 'Exit';
+ }
+
+ # Set to redisplay.
+ fset('mplayer/mainmenu', 'isdefault', 'true');
+
+ $_ = $selection;
+
+ return 'configure' if /^Video/;
+# return 'aoutput' if /^Aoutput/;
+ return 'Exit';
+}
+
+sub editreturn {
+ my @args = @_;
+ return 'mainmenu' if $isediting;
+ return @args;
+}
+
+sub editfix {
+ my $template = shift @_;
+ if ($isediting) {
+ fset($template, 'isdefault', 'true');
+ }
+}