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/>.
25 from distutils
.core
import setup
28 (DEFAULT
, MAEMO
) = range(2)
30 # import the gpodder module locally for module metadata
31 sys
.path
.insert(0, 'src')
34 # if we are running "setup.py sdist", include all targets (see below)
35 building_source
= ('sdist' in sys
.argv
)
38 if 'TARGET' in os
.environ
:
39 if os
.environ
['TARGET'].strip().lower() == 'maemo':
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"?)
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_26
= [ 'data/icons/26/gpodder.png' ]
81 inst_icons_24
= [ 'data/icons/24/gpodder.png' ]
82 inst_icons_22
= [ 'data/icons/22/gpodder.png' ]
83 inst_icons_16
= [ 'data/icons/16/gpodder.png' ]
84 inst_icons_svg
= [ 'data/gpodder.svg' ]
87 ('share/man/man1', inst_manpages
),
88 ('share/gpodder/ui', inst_share_ui
),
89 ('share/pixmaps', inst_icons
),
90 ('share/gpodder', inst_share_gpodder
),
91 ('share/dbus-1/services',inst_share_dbus_services
),
97 'gpodder.gtkui.interface',
100 # target-specific installation data files
101 if target
== DEFAULT
or building_source
:
103 ('share/gpodder/ui/desktop', inst_share_ui_desktop
),
104 ('share/applications', inst_desktop
),
105 ('share/icons/hicolor/scalable/apps', inst_icons_svg
),
106 ('share/icons/hicolor/48x48/apps', inst_icons
),
107 ('share/icons/hicolor/24x24/apps', inst_icons_24
),
108 ('share/icons/hicolor/22x22/apps', inst_icons_22
),
109 ('share/icons/hicolor/16x16/apps', inst_icons_16
),
112 'gpodder.gtkui.desktop',
114 additional_scripts
= []
116 if target
== MAEMO
or building_source
:
118 ('share/gpodder/ui/maemo', inst_share_ui_maemo
),
119 ('share/gpodder/ui/frmntl', inst_share_ui_frmntl
),
120 ('share/applications/hildon', inst_desktop_maemo
),
121 ('share/icons/hicolor/scalable/apps', inst_icons_64
),
122 ('share/icons/hicolor/40x40/apps', inst_icons_40
),
123 ('share/icons/hicolor/26x26/apps', inst_icons_26
),
126 'gpodder.gtkui.maemo',
127 'gpodder.gtkui.frmntl',
129 additional_scripts
= [
130 'data/maemo/gpodder-mplayer',
133 author
, email
= re
.match(r
'^(.*) <(.*)>$', gpodder
.__author
__).groups()
137 version
= gpodder
.__version
__,
138 package_dir
= { '':'src' },
140 description
= 'media aggregator',
142 author_email
= email
,
143 url
= gpodder
.__url
__,
144 scripts
= glob
.glob('bin/*') + additional_scripts
,
145 data_files
= data_files
+ translation_files