aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/utils/multimedia.pp
blob: 91a880d61aa4c62d9e2a4f5dc5c5e657154d3761 (plain)
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
# Multimedia utilities
class utils::multimedia::studio {
  package { [ 'ardour', 'hydrogen', ]:
    ensure => $lsbdistcodename ? {
      'lenny' => absent,
      default => installed,
    }
  }
}

class utils::multimedia {
  # Multimedia
  package { [ 'alsa-tools-gui',  'mp3blaster',          'alsa-utils', 'netpbm',
              'gqview',          'mpg123',              'audacious',  'qjackctl',
              'gimp',            'xine-ui',             'amarok',     'wodim',
              'genisoimage',     'dvd+rw-tools',        'inkscape',   'jhead',
              'easytag',         'flashplugin-nonfree', 'vlc',        'audacity',
              'opencubicplayer', 'moc',                 'cmus',       'orpheus',
              'cbrpager',        'llgal',               'darksnow',   'mplayer' ]:
    ensure => installed,
  }

  # Flash alternative
  file { "/etc/alternatives/flash-mozilla.so":
    ensure  => "/usr/lib/flashplugin-nonfree/libflashplayer.so",
    owner   => root,
    group   => root,
    require => Package['flashplugin-nonfree'],
  }
}