/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: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-04 01:02:20 UTC
  • mto: (0.14.1 main) (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060904010220-750d30092a1b2eb5
Prepare a new release: 0.10.0.

2006-09-04  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * RELEASE: Olive 0.10.0
    * setup.py: tweaked the po building a bit

2006-09-03  Szilveszter Farkas <Szilveszter.Farkas@gmail.com>

    * olive/frontend/gtk/__init__.py: bumped the version number to be consistent
      with Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
                        lang = os.path.basename(po[:-3])
36
36
                        # It's necessary to compile in this directory (not in po_dir)
37
37
                        # because install_data can't rename file
38
 
                        mo = os.path.join('build', 'mo', lang + '.mo')
 
38
                        mo = os.path.join('build', 'mo', lang, 'olive-gtk.mo')
39
39
                        
40
40
                        directory = os.path.dirname(mo)
41
41
                        if not os.path.exists(directory):
49
49
                                if os.system(cmd) != 0:
50
50
                                        raise SystemExit('Error while running msgfmt')
51
51
 
52
 
                                dest = os.path.dirname(os.path.join('share', 'locale', lang, 'LC_MESSAGES', 'olive.mo'))
 
52
                                dest = os.path.dirname(os.path.join('share', 'locale', lang, 'LC_MESSAGES', 'olive-gtk.mo'))
53
53
                                data_files.append((dest, [mo]))
54
54
                
55
55
                return data_files