summaryrefslogtreecommitdiff
path: root/manifests/wikiprint.pp
blob: 48253b8b8bd6b99497e8ba430232726cc2178489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class trac::wikiprint {
  # 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,
  #}

  package { 'trac-wikiprint':
    ensure  => $::lsbdistcodename ? {
      'jessie' => absent,
      default  => present,
    },
  }
}