summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6fa890a..21e8072 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -3,4 +3,16 @@ class trac {
package { "trac": ensure => installed, }
package { "trac-git": ensure => installed, }
package { "libapache2-mod-python": ensure => installed, }
+
+ # needed by http://trac-hacks.org/wiki/TracWikiPrintPlugin
+ # wikiprint needs also pisa, which is still in testing (as the
+ # time of writing), see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504277
+ #package { [ 'python-reportlab', 'python-html5lib', 'python-pypdf', 'python-imaging', 'python-pygments' ]:
+ # ensure => installed,
+ #}
+
+ # needed by http://trac-hacks.org/wiki/TracWikiToPdfPlugin
+ package { [ "htmldoc", "python-clearsilver" ]:
+ ensure => present,
+ }
}