l10n: Updated Polish (pl) translation to 100%
[gpodder.git] / setup.py
blobc1cf41c71614ddcc0f253f14b33aeab909636ac4
1 #!/usr/bin/env python
4 # gPodder - A media aggregator and podcast client
5 # Copyright (c) 2005-2010 Thomas Perl and the gPodder Team
7 # gPodder is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # gPodder is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 import glob
22 import os
23 import re
24 import sys
25 from distutils.core import setup
27 # build targets
28 (DEFAULT, MAEMO) = range(2)
30 # import the gpodder module locally for module metadata
31 sys.path.insert(0, 'src')
32 import gpodder
34 # if we are running "setup.py sdist", include all targets (see below)
35 building_source = ('sdist' in sys.argv)
37 # build target
38 if 'TARGET' in os.environ:
39 if os.environ['TARGET'].strip().lower() == 'maemo':
40 target = MAEMO
41 else:
42 target = DEFAULT
44 # search for translations, taking $LINGUAS into account
45 translation_files = []
46 linguas = os.environ.get('LINGUAS', None)
47 if linguas is not None:
48 linguas = linguas.split()
50 for mofile in glob.glob('data/locale/*/LC_MESSAGES/gpodder.mo'):
51 _, _, lang, _ = mofile.split('/', 3)
53 # Only install if either $LINGUAS it not set or the
54 # language is specified in the $LINGUAS variable
55 if linguas is None or lang in linguas:
56 modir = os.path.dirname(mofile).replace('data', 'share')
57 translation_files.append((modir, [mofile]))
59 if not len(translation_files) and \
60 'clean' not in sys.argv and \
61 linguas not in (None, []):
62 print >>sys.stderr, """
63 Warning: No translation files. (Did you forget to run "make messages"?)
64 """
66 # files to install
67 inst_manpages = glob.glob( 'doc/man/*.1')
68 inst_share_ui = glob.glob('data/ui/*.ui')
69 inst_share_ui_desktop = glob.glob('data/ui/desktop/*.ui')
70 inst_share_ui_maemo = glob.glob('data/ui/maemo/*.ui')
71 inst_share_ui_frmntl = glob.glob('data/ui/frmntl/*.ui')
72 inst_share_gpodder = [ 'data/credits.txt' ] + glob.glob('data/images/*.png')
73 inst_desktop = [ 'data/gpodder.desktop' ]
74 inst_desktop_maemo = [ 'data/maemo/gpodder.desktop' ]
75 inst_share_dbus_services = ['data/org.gpodder.service']
77 inst_icons = [ 'data/gpodder.png' ]
78 inst_icons_64 = [ 'data/icons/64/gpodder.png' ]
79 inst_icons_40 = [ 'data/icons/40/gpodder.png' ]
80 inst_icons_32 = [ 'data/icons/32/gpodder.png' ]
81 inst_icons_26 = [ 'data/icons/26/gpodder.png' ]
82 inst_icons_24 = [ 'data/icons/24/gpodder.png' ]
83 inst_icons_22 = [ 'data/icons/22/gpodder.png' ]
84 inst_icons_16 = [ 'data/icons/16/gpodder.png' ]
85 inst_icons_svg = [ 'data/gpodder.svg' ]
87 data_files = [
88 ('share/man/man1', inst_manpages),
89 ('share/gpodder/ui', inst_share_ui),
90 ('share/pixmaps', inst_icons),
91 ('share/gpodder', inst_share_gpodder),
92 ('share/dbus-1/services',inst_share_dbus_services),
95 packages = [
96 'gpodder',
97 'gpodder.gtkui',
98 'gpodder.gtkui.interface',
101 # target-specific installation data files
102 if target == DEFAULT or building_source:
103 data_files += [
104 ('share/gpodder/ui/desktop', inst_share_ui_desktop),
105 ('share/applications', inst_desktop),
106 ('share/icons/hicolor/scalable/apps', inst_icons_svg),
107 ('share/icons/hicolor/48x48/apps', inst_icons),
108 ('share/icons/hicolor/24x24/apps', inst_icons_24),
109 ('share/icons/hicolor/22x22/apps', inst_icons_22),
110 ('share/icons/hicolor/16x16/apps', inst_icons_16),
112 packages += [
113 'gpodder.gtkui.desktop',
115 additional_scripts = []
117 if target == MAEMO or building_source:
118 data_files += [
119 ('share/gpodder/ui/maemo', inst_share_ui_maemo),
120 ('share/gpodder/ui/frmntl', inst_share_ui_frmntl),
121 ('share/applications/hildon', inst_desktop_maemo),
122 ('share/icons/hicolor/scalable/apps', inst_icons_64),
123 ('share/icons/hicolor/40x40/apps', inst_icons_40),
124 ('share/icons/hicolor/32x32/apps', inst_icons_32),
125 ('share/icons/hicolor/26x26/apps', inst_icons_26),
126 ('share/icons/hicolor/16x16/apps', inst_icons_16),
128 packages += [
129 'gpodder.gtkui.maemo',
130 'gpodder.gtkui.frmntl',
132 additional_scripts = [
133 'data/maemo/gpodder-mplayer',
136 author, email = re.match(r'^(.*) <(.*)>$', gpodder.__author__).groups()
138 setup(
139 name = 'gpodder',
140 version = gpodder.__version__,
141 package_dir = { '':'src' },
142 packages = packages,
143 description = 'media aggregator',
144 author = author,
145 author_email = email,
146 url = gpodder.__url__,
147 scripts = glob.glob('bin/*') + additional_scripts,
148 data_files = data_files + translation_files