/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Albisetti
  • Date: 2008-03-05 11:11:34 UTC
  • Revision ID: argentina@gmail.com-20080305111134-khhlbhsv5o46rxti
Install new bzr icons (emblems) and update the icon cache

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        # Disable for now - performance issues
40
40
        #self.data_files.extend(self._nautilus_plugin())
41
41
        install_data.run(self)
42
 
    
 
42
        cmd = os.popen('gtk-update-icon-cache -f -t /usr/share/icons/hicolor')
 
43
 
43
44
    def _compile_po_files(self):
44
45
        data_files = []
45
46
        
127
128
                ('share/applications', ['olive-gtk.desktop',
128
129
                                        'bazaar-properties.desktop',
129
130
                                        'bzr-notify.desktop']),
130
 
                ('share/pixmaps', ['icons/olive-gtk.png'])
 
131
                ('share/pixmaps', ['icons/olive-gtk.png']),
 
132
                ('share/icons/hicolor/scalable/emblems', 
 
133
                    ['icons/emblem-bzr-added.svg', 
 
134
                        'icons/emblem-bzr-conflict.svg', 
 
135
                        'icons/emblem-bzr-controlled.svg', 
 
136
                        'icons/emblem-bzr-modified.svg',
 
137
                        'icons/emblem-bzr-removed.svg'])
131
138
               ],
132
139
    cmdclass={'install_data': InstallData,
133
140
              'check': Check}