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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
# -*- coding: utf-8 -*-
# This file is part of Gnomolicious.
#
# Gnomolicious is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Gnomolicious is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Gnomolicious; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# (C) 2003, 2005 Terje Røsten <terjeros@phys.ntnu.no>, Nicolas Évrard
import sys
import os
import os.path
import re
import glob
import commands
import types
import msgfmt
from distutils.core import Command
from distutils.command.build import build
from distutils.command.install import install
from distutils.command.install_data import install_data
from distutils.dep_util import newer
from distutils.dist import Distribution
from distutils.core import setup
try:
from dsextras import BuildExt
except ImportError:
try:
from gtk.dsextras import BuildExt
except ImportError:
sys.exit('Error: Can not find dsextras or gtk.dsextras')
class l10napp_build(build):
def has_po_files(self):
return self.distribution.has_po_files()
sub_commands = []
sub_commands.append(('build_conf', None))
sub_commands.extend(build.sub_commands)
sub_commands.append(('build_mo', has_po_files))
class l10napp_install(install):
def has_po_files(self):
return self.distribution.has_po_files()
sub_commands = []
sub_commands.extend(install.sub_commands)
sub_commands.append(('install_mo', has_po_files))
class build_conf(Command):
description = 'update conf file'
def initialize_options(self):
self.prefix = None
def finalize_options(self):
self.set_undefined_options('install', ('prefix', 'prefix'))
def run(self):
self.announce('Building files from templates')
class build_mo(Command):
description = 'build binary message catalog'
user_options = [
('build-base=', 'b', 'directory to build to')]
def initialize_options(self):
self.build_base = None
self.translations = self.distribution.translations
self.force = None
def finalize_options(self):
self.set_undefined_options('build',
('build_base', 'build_base'),
('force', 'force'))
def run(self):
self.announce('Building binary message catalog')
if self.distribution.has_po_files():
for mo, po in self.translations:
dest = os.path.normpath(self.build_base + '/' + mo)
self.mkpath(os.path.dirname(dest))
if not self.force and not newer(po, dest):
self.announce("not building %s (up-to-date)" % dest)
else:
msgfmt.make(po, dest)
class install_mo(install_data):
description = 'install generated binary message catalog'
def initialize_options(self):
install_data.initialize_options(self)
self.translations = self.distribution.translations
self.has_po_files = self.distribution.has_po_files
self.install_dir = None
self.build_dir = None
self.skip_build = None
self.outfiles = []
def finalize_options(self):
install_data.finalize_options(self)
self.set_undefined_options('build_mo', ('build_base', 'build_dir'))
self.set_undefined_options('install',
('install_data', 'install_dir'),
('skip_build', 'skip_build'))
def run(self):
if not self.skip_build:
self.run_command('build_mo')
if self.has_po_files():
for mo, po in self.translations:
src = os.path.normpath(self.build_dir + '/' + mo)
if not os.path.isabs(mo):
dest = os.path.normpath(self.install_dir + '/' + mo)
elif self.root:
dest = self.root + mo
else:
dest = mo
self.mkpath(os.path.dirname(dest))
(out, _) = self.copy_file(src, dest)
self.outfiles.append(out)
def get_outputs (self):
return self.outfiles
def get_inputs (self):
return [ po for mo, po in self.translations ]
class L10nAppDistribution(Distribution):
def __init__(self, attrs = None):
self.modules_check = 0
self.gconf = 1
self.msg_sources = None
self.pot_file = None
self.translations = []
Distribution.__init__(self, attrs)
self.cmdclass = {
'install' : l10napp_install,
'install_mo' : install_mo,
'build' : l10napp_build,
'build_mo' : build_mo,
'build_conf' : build_conf,
'build_ext': BuildExt}
def has_po_files(self):
return len(self.translations) > 0
def setup(**kwds):
from distutils.core import setup
kwds['distclass'] = L10nAppDistribution
setup(**kwds)
|