summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2011-04-02 11:10:01 -0700
committerDaniel Burrows <dburrows@debian.org>2011-04-02 11:10:01 -0700
commit9343b6214a41e831a501ef7ce7b6981859445baa (patch)
tree2ac87048f274a8e7da2a93fd8fa2e8136ce165b7 /doc
parentde851905685f3b874fee0978587e406e83c697a0 (diff)
downloadaptitude-9343b6214a41e831a501ef7ce7b6981859445baa.tar.gz
Nuke the scons build scripts.
These never worked out as well as I intended, and all indications were that they would be a maintenance burden...or just bitrot. Fully parallel builds are nice, but my builds are pretty quick on my 8-core box even with the artificial chokepoints that automake induces.
Diffstat (limited to 'doc')
-rw-r--r--doc/SConscript33
-rw-r--r--doc/cs/SConscript10
-rw-r--r--doc/de/SConscript7
-rw-r--r--doc/en/SConscript10
-rw-r--r--doc/es/SConscript7
-rw-r--r--doc/fi/SConscript8
-rw-r--r--doc/fr/SConscript8
-rw-r--r--doc/ja/SConscript7
8 files changed, 0 insertions, 90 deletions
diff --git a/doc/SConscript b/doc/SConscript
deleted file mode 100644
index fc2ac162..00000000
--- a/doc/SConscript
+++ /dev/null
@@ -1,33 +0,0 @@
-Import('docs_env')
-import po4a
-
-docs_env.Dist([
- 'Makefile.am',
- 'aptitude-common.xsl',
- 'aptitude-db2latex.xsl',
- 'aptitude-html.xsl',
- 'aptitude-man.xsl',
- 'aptitude-txt.xsl',
- 'aptitude.css',
- 'fixup-text',
- 'html-to-text',
- ])
-
-SConscript(dirs = [
- 'cs',
- 'de',
- 'en',
- 'es',
- 'fi',
- 'fr',
- 'ja',
- # TODO: everyone else.
- ])
-
-# NOTE: po4a must already exist; i.e., this won't work if it's an
-# intermediate target. This is a limitation of the current po4a rule.
-build_po4a = docs_env.Po4AConfiguration('po4a/po4a.cfg')
-
-docs_env.Alias('update-po', build_po4a)
-docs_env.Alias('po', build_po4a)
-
diff --git a/doc/cs/SConscript b/doc/cs/SConscript
deleted file mode 100644
index f45811e7..00000000
--- a/doc/cs/SConscript
+++ /dev/null
@@ -1,10 +0,0 @@
-Import('docs_env')
-docs_env.Dist(
- 'Makefile.am',
- 'SConscript',
- )
-
-docs_env.AptitudeStandaloneDocs(
- 'cs',
- manpage = None,
- )
diff --git a/doc/de/SConscript b/doc/de/SConscript
deleted file mode 100644
index 371ffddf..00000000
--- a/doc/de/SConscript
+++ /dev/null
@@ -1,7 +0,0 @@
-Import('docs_env')
-
-docs_env.AptitudePo4aDocs(
- 'de',
- main_percent_translated = 0,
- manpage_percent_translated = 0
- )
diff --git a/doc/en/SConscript b/doc/en/SConscript
deleted file mode 100644
index 710bfb81..00000000
--- a/doc/en/SConscript
+++ /dev/null
@@ -1,10 +0,0 @@
-Import('docs_env')
-
-docs_env.Dist(
- 'Makefile.am',
- 'SConscript',
- )
-
-docs_env.AptitudeStandaloneDocs(
- 'en',
- )
diff --git a/doc/es/SConscript b/doc/es/SConscript
deleted file mode 100644
index ceae2e2a..00000000
--- a/doc/es/SConscript
+++ /dev/null
@@ -1,7 +0,0 @@
-Import('docs_env')
-
-docs_env.AptitudePo4aDocs(
- 'es',
- main_percent_translated = 0,
- manpage_percent_translated = 0,
- )
diff --git a/doc/fi/SConscript b/doc/fi/SConscript
deleted file mode 100644
index cd79d98b..00000000
--- a/doc/fi/SConscript
+++ /dev/null
@@ -1,8 +0,0 @@
-Import('docs_env')
-
-import os.path
-
-docs_env.AptitudeStandaloneDocs(
- 'fi',
- manpage_postprocess = 'fixman',
- )
diff --git a/doc/fr/SConscript b/doc/fr/SConscript
deleted file mode 100644
index 5e10332e..00000000
--- a/doc/fr/SConscript
+++ /dev/null
@@ -1,8 +0,0 @@
-Import('docs_env')
-
-docs_env.AptitudePo4aDocs(
- 'fr',
- main_percent_translated = 45,
- manpage_percent_translated = 30,
- manpage_postprocess = 'fixman',
- )
diff --git a/doc/ja/SConscript b/doc/ja/SConscript
deleted file mode 100644
index 11871664..00000000
--- a/doc/ja/SConscript
+++ /dev/null
@@ -1,7 +0,0 @@
-Import('docs_env')
-
-docs_env.AptitudePo4aDocs(
- 'ja',
- main_percent_translated = 30,
- manpage_percent_translated = 29,
- )