1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
digraph "whiptail" {
rankdir=LR;
node [shape=box];
"whiptail" -> "libnewt0.52" [color=blue,label="(>= 0.52.2)"];
"libnewt0.52" -> "libslang2" [color=blue,label="(>= 2.0.7-1)"];
"libslang2" -> "libpng12-0";
"libnewt0.52" -> "libfribidi0";
"libnewt0.52" -> "libnewt0.51" [color=red];
"whiptail" -> "libpopt0" [color=blue,label="(>= 1.14)"];
"libpopt0" -> "popt" [color=red];
"whiptail" -> "libslang2" [color=blue,label="(>= 2.0.7-1)"];
"whiptail" -> "whiptail-provider" [color=red];
"whiptail-utf8" -> "whiptail" [dir=back,arrowtail=inv,color=green];
"whiptail-utf8" [shape=octagon];
"whiptail-provider" -> "whiptail" [dir=back,arrowtail=inv,color=green];
"whiptail-provider" [shape=octagon];
"squeak-vm" -> "whiptail" [color=blue];
"pds1" -> "whiptail" [style=dotted,label="(1)"];
"pds1" -> "whiptail-provider" [style=dotted,label="(2)"];
"pds1" -> "dialog" [style=dotted,label="(3)"];
"pds1" [shape=circle,label=or];
"rcconf" -> "pds1" [color=blue];
"pds2" -> "whiptail" [style=dotted,label="(1)"];
"pds2" -> "dialog" [style=dotted,label="(2)"];
"pds2" [shape=circle,label=or];
"psfontmgr" -> "pds2" [color=blue];
"pds3" -> "whiptail-provider" [style=dotted,label="(1)"];
"pds3" -> "whiptail" [style=dotted,label="(2)"];
"pds3" [shape=circle,label=or];
"pppoeconf" -> "pds3" [color=blue];
"pppconfig" -> "pds2" [color=blue];
"pds4" -> "whiptail" [style=dotted,label="(1)"];
"pds4" -> "whiptail-provider" [style=dotted,label="(2)"];
"pds4" [shape=circle,label=or];
"modconf" -> "pds4" [color=blue];
"pds5" -> "whiptail" [style=dotted,label="(1)"];
"pds5" -> "zenity" [style=dotted,label="(2)"];
"pds5" [shape=circle,label=or];
"emdebian-tools" -> "pds5" [color=blue];
"defoma" -> "pds2" [color=blue];
"debian-goodies" -> "pds2" [color=blue];
"alsa-utils" -> "pds2" [color=blue];
"pds6" -> "dialog" [style=dotted,label="(1)"];
"pds6" -> "whiptail" [style=dotted,label="(2)"];
"pds6" [shape=circle,label=or];
"signing-party" -> "pds6";
"gdm" -> "pds2";
"squeak-vm" [style=filled,fillcolor=ivory];
"rcconf" [style=filled,fillcolor=ivory];
"psfontmgr" [style=filled,fillcolor=ivory];
"pppoeconf" [style=filled,fillcolor=ivory];
"pppconfig" [style=filled,fillcolor=ivory];
"modconf" [style=filled,fillcolor=ivory];
"emdebian-tools" [style=filled,fillcolor=ivory];
"defoma" [style=filled,fillcolor=ivory];
"debian-goodies" [style=filled,fillcolor=ivory];
"alsa-utils" [style=filled,fillcolor=ivory];
"signing-party" [style=filled,fillcolor=ivory];
"gdm" [style=filled,fillcolor=ivory];
"rcconf" [style=filled,fillcolor=ivory];
"pppoeconf" [style=filled,fillcolor=ivory];
"modconf" [style=filled,fillcolor=ivory];
"whiptail" [style="setlinewidth(2)"]
"libnewt0.51" [style=filled,fillcolor=oldlace];
"popt" [style=filled,fillcolor=oldlace];
"dialog" [shape=diamond];
"zenity" [shape=diamond];
}
// Excluded dependencies:
// libc6 zlib1g
|