summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 00:16:12 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 01:13:26 (EDT)
commit11ea456edc857c0dab0518df935f4339757b4ff6 (patch)
tree6b566f1893c63f6b2e661baba5e40159b94f3d11
parent70618d8bdca57a5503a388eba21c068a61df5b4e (diff)
Add graph label
-rwxr-xr-xbin/depsdot4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/depsdot b/bin/depsdot
index 411af57..37d495d 100755
--- a/bin/depsdot
+++ b/bin/depsdot
@@ -77,7 +77,9 @@ sub main
' * Generated ' . strftime('on %Y-%m-%d at %H:%M:%S %Z',
localtime()) . "\n */\n\n" .
"digraph deps {\n\toverlap = false;\n\tsplines = true;\n" .
- "\tlayout = \"neato\";\n\n\t/* Source packages */\n");
+ "\tlayout = \"neato\";\n" .
+ "\tlabel = \"ProteanOS Source Package Dependencies\";\n" .
+ "\n\t/* Source packages */\n");
foreach my $src (sort(@src_pkgs)) {
my $attr = '';
if (not defined($non_leaf_src_pkgs{$src})) {