2005-10-14 23:20:12 +02:00
|
|
|
## setup_win32.py (run me as python setup_win32.py py2exe -O2)
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org>
|
|
|
|
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2005-04-01 01:26:05 +02:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-10-22 13:13:13 +02:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2005-04-01 01:26:05 +02:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2005-04-01 01:26:05 +02:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
import py2exe
|
|
|
|
import glob
|
2008-05-19 12:58:03 +02:00
|
|
|
import sys
|
2008-04-07 15:14:06 +02:00
|
|
|
import os
|
2005-04-01 01:26:05 +02:00
|
|
|
|
2008-11-19 22:47:28 +01:00
|
|
|
docutils_files = []
|
|
|
|
def fill_docutils_files(folder, base=u'docutils'):
|
|
|
|
docutils_files.append((base, glob.glob(os.path.join(folder, base, '*.pyc'))))
|
|
|
|
for path in os.listdir(os.path.join(folder, base)):
|
|
|
|
if os.path.isdir(os.path.join(folder, base, path)):
|
|
|
|
fill_docutils_files(folder, base=os.path.join(base, path))
|
|
|
|
|
|
|
|
try:
|
|
|
|
import docutils.readers
|
|
|
|
import docutils.writers.html4css1
|
|
|
|
import docutils.languages
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
fill_docutils_files(os.path.join(sys.prefix, 'Lib', 'site-packages'))
|
|
|
|
docutils_files.append((os.path.join('docutils', 'writers', 'html4css1'),
|
2008-11-29 15:48:19 +01:00
|
|
|
glob.glob(os.path.join(sys.prefix, 'Lib', 'site-packages', 'docutils',
|
2008-11-19 22:47:28 +01:00
|
|
|
'writers', 'html4css1', '*.css'))))
|
|
|
|
|
2008-05-19 12:58:03 +02:00
|
|
|
sys.path.append('src')
|
2008-08-15 05:20:23 +02:00
|
|
|
# Use local gtk folder instead of the one in PATH that is not latest gtk
|
2008-05-19 12:58:03 +02:00
|
|
|
if 'gtk' in os.listdir('.'):
|
2008-04-07 15:14:06 +02:00
|
|
|
sys.path.append('gtk/bin')
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
opts = {
|
2005-05-07 22:23:55 +02:00
|
|
|
'py2exe': {
|
2008-11-19 22:47:28 +01:00
|
|
|
# ConfigParser,UserString,roman are needed for docutils
|
2008-11-29 15:48:19 +01:00
|
|
|
'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*,ConfigParser,UserString',
|
2005-05-07 22:23:55 +02:00
|
|
|
'dll_excludes': [
|
|
|
|
'iconv.dll','intl.dll','libatk-1.0-0.dll',
|
|
|
|
'libgdk_pixbuf-2.0-0.dll','libgdk-win32-2.0-0.dll',
|
|
|
|
'libglib-2.0-0.dll','libgmodule-2.0-0.dll',
|
|
|
|
'libgobject-2.0-0.dll','libgthread-2.0-0.dll',
|
|
|
|
'libgtk-win32-2.0-0.dll','libpango-1.0-0.dll',
|
2007-12-06 21:38:41 +01:00
|
|
|
'libpangowin32-1.0-0.dll','libcairo-2.dll',
|
2006-12-19 13:20:39 +01:00
|
|
|
'libpangocairo-1.0-0.dll','libpangoft2-1.0-0.dll',
|
2005-04-01 01:26:05 +02:00
|
|
|
],
|
2008-11-19 22:47:28 +01:00
|
|
|
'excludes': [
|
|
|
|
'docutils'
|
|
|
|
],
|
2009-11-07 14:44:15 +01:00
|
|
|
'optimize': 2,
|
2005-04-01 01:26:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-16 01:46:24 +02:00
|
|
|
|
2005-04-01 01:26:05 +02:00
|
|
|
setup(
|
2005-05-07 22:23:55 +02:00
|
|
|
name = 'Gajim',
|
2008-12-22 11:38:05 +01:00
|
|
|
version = '0.12.1',
|
2006-11-20 15:09:21 +01:00
|
|
|
description = 'A full featured Jabber client',
|
2006-11-20 15:39:31 +01:00
|
|
|
author = 'Gajim Development Team',
|
|
|
|
url = 'http://www.gajim.org/',
|
|
|
|
download_url = 'http://www.gajim.org/downloads.php',
|
|
|
|
license = 'GPL',
|
2008-12-03 23:45:25 +01:00
|
|
|
|
2005-05-17 17:48:57 +02:00
|
|
|
windows = [{'script': 'src/gajim.py',
|
2006-11-20 15:09:21 +01:00
|
|
|
'icon_resources': [(1, 'data/pixmaps/gajim.ico')]},
|
|
|
|
{'script': 'src/history_manager.py',
|
2005-08-18 23:51:37 +02:00
|
|
|
'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}],
|
2005-04-01 01:26:05 +02:00
|
|
|
options=opts,
|
2005-05-17 17:48:57 +02:00
|
|
|
|
2008-11-19 22:47:28 +01:00
|
|
|
data_files=docutils_files,
|
|
|
|
|
2005-04-01 01:26:05 +02:00
|
|
|
)
|
2008-07-29 21:49:31 +02:00
|
|
|
|
2008-08-12 18:12:25 +02:00
|
|
|
# vim: se ts=3:
|