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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#
# Conscript file for building SCons documentation.
#
Import qw(
date
env
revision
version
);
#
#
#
$doc_tar_gz = "#build/dist/scons-doc-$version.tar.gz";
#
# Always create a version.sgml file containing the version information
# for this run. Ignore it for dependency purposes so we don't
# rebuild all the docs every time just because the date changes.
#
$verfile = SourcePath("version.sgml");
unlink($verfile);
chmod(0664, $verfile);
open(FILE, ">$verfile") || die "Cannot open '$verfile': $!";
print FILE <<_EOF_;
<!--
THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT.
-->
<!ENTITY build_date "$date">
<!ENTITY build_version "$version">
<!ENTITY build_revision "$revision">
_EOF_
close(FILE);
Ignore("version.sgml");
#
# Each document will live in its own subdirectory. List them here.
#
@doc_dirs = qw(
design
);
# Find internal dependencies in .sgml files:
#
# <!entity bground SYSTEM "bground.sgml">
# <graphic fileref="file.jpg">
#
# This only finds one per line, and assumes that anything
# defined as a SYSTEM entity is, in fact, a file included
# somewhere in the document.
sub scansgml {
my @includes = ();
do {
if (/<!entity\s+(?:%\s+)?(?:\S+)\s+SYSTEM\s+"([^"]*)">/i) {
push(@includes, $1);
} elsif (/<graphic[^>]*\sfileref="([^"]*)"/) {
push(@includes, "design/$1");
}
} while (<scan::quickscan::SCAN>);
@includes;
}
#
# We have to tell Cons to QuickScan the top-level SGML files which
# get included by the document SGML files in the subdirectories.
#
@included_sgml = qw(
scons.mod
copyright.sgml
);
foreach $sgml (@included_sgml) {
$env->QuickScan(\&scansgml, $sgml);
}
#
# For each document, build the document itself in HTML, Postscript,
# and PDF formats.
#
foreach $doc (@doc_dirs) {
my $main = "$doc/main.sgml";
my $out = "main.out";
my $htmldir = "HTML/scons-$doc";
my $ps = "PS/scons-$doc.ps";
my $pdf = "PDF/scons-$doc.pdf";
$env->QuickScan(\&scansgml, $main);
$env->Command("$htmldir/book1.html", $main,
qq(jw -b html -o %>:d %<));
$env->Command($ps, $main,
[qq(rm -f %>:d/$out),
qq(jw -b ps -o %>:d %<),
qq(mv %>:d/main.ps %>),
qq(rm -f %>:d/$out),
]);
$env->Command($pdf, $main,
[qq(rm -f %>:d/$out),
qq(jw -b pdf -o %>:d %<),
qq(mv %>:d/main.pdf %>),
qq(rm -f %>:d/$out),
]);
push(@tar_deps, "$htmldir/book1.html", $ps, $pdf);
push(@tar_list, "$htmldir/[A-Za-z]*", $ps, $pdf);
}
#
# Now actually create the tar file of the documentation,
# for easy distribution to the web site.
#
$env->Command($doc_tar_gz,
@tar_deps,
qq(cd build/doc && tar zcvf ../dist/%>:f @tar_list));
|