Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Kouremenos <kourem@gmail.com>2005-04-01 03:26:05 +0400
committerNikos Kouremenos <kourem@gmail.com>2005-04-01 03:26:05 +0400
commit610bc35b22d86eee7d74a3dae18876ed4e2dbdc5 (patch)
treef3137060ae8aef0382b7f13477a6dfcd4ff3a5ca /setup_win32.py
parentce6f72462036a5d69cc908782fbfee5bafcca8eb (diff)
ImageCellRenderer has now better name, gajim.py --> gajim.sh [needs fix to makefile to make it work, padding and xalign trying to clean up (don't work yet). added a fixme in new message dialog about focus problems..
Diffstat (limited to 'setup_win32.py')
-rw-r--r--setup_win32.py108
1 files changed, 54 insertions, 54 deletions
diff --git a/setup_win32.py b/setup_win32.py
index 51828499d..cab5dbcd0 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -1,54 +1,54 @@
-## setup_win32.py
-##
-## Gajim Team:
-## - Yann Le Boulanger <asterix@lagaule.org>
-## - Vincent Hanquez <tab@snarc.org>
-##
-## Copyright (C) 2003-2005 Gajim Team
-##
-## This program 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; version 2 only.
-##
-## This program 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.
-##
-
-from distutils.core import setup
-import py2exe
-import glob
-
-includes = ["encodings",
- "encodings.utf-8",]
-
-opts = {
- "py2exe": {
- "includes": "pango,atk,gobject,plugins,plugins.gtkgui,plugins.logger,encodings,encodings.*",
- "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",
- "libpangowin32-1.0-0.dll"
- ],
- }
-}
-
-setup(
- name = "Gajim",
- description = "A jabber client",
-# console=["gajim.py"],
- windows = [{"script": "gajim.py",
- "icon_resources": [(1, "gajim.ico")]}],
- options=opts,
- data_files=[("plugins/gtkgui", glob.glob("plugins/gtkgui/gtkgui.glade")),
- ("plugins/gtkgui/icons/sun", glob.glob("plugins/gtkgui/icons/sun/*.*")),
- ("plugins/gtkgui/emoticons", glob.glob("plugins/gtkgui/emoticons/*.*")),
- ("plugins/gtkgui/pixmaps", glob.glob("plugins/gtkgui/pixmaps/*.*")),
- ("sounds", glob.glob("sounds/*.*")),
- ("Messages/fr/LC_MESSAGES", glob.glob("Messages/fr/LC_MESSAGES/*.mo"))
- ],
-)
+## setup_win32.py
+##
+## Gajim Team:
+## - Yann Le Boulanger <asterix@lagaule.org>
+## - Vincent Hanquez <tab@snarc.org>
+## - Nikos Kouremenos <kourem@gmail.com>
+## Copyright (C) 2003-2005 Gajim Team
+##
+## This program 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; version 2 only.
+##
+## This program 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.
+##
+
+from distutils.core import setup
+import py2exe
+import glob
+
+includes = ["encodings",
+ "encodings.utf-8",]
+
+opts = {
+ "py2exe": {
+ "includes": "pango,atk,gobject,plugins,plugins.gtkgui,plugins.logger,encodings,encodings.*",
+ "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",
+ "libpangowin32-1.0-0.dll"
+ ],
+ }
+}
+
+setup(
+ name = "Gajim",
+ description = "A jabber client",
+# console=["gajim.sh"],
+ windows = [{"script": "gajim.sh",
+ "icon_resources": [(1, "gajim.ico")]}],
+ options=opts,
+ data_files=[("plugins/gtkgui", glob.glob("plugins/gtkgui/gtkgui.glade")),
+ ("plugins/gtkgui/icons/sun", glob.glob("plugins/gtkgui/icons/sun/*.*")),
+ ("plugins/gtkgui/emoticons", glob.glob("plugins/gtkgui/emoticons/*.*")),
+ ("plugins/gtkgui/pixmaps", glob.glob("plugins/gtkgui/pixmaps/*.*")),
+ ("sounds", glob.glob("sounds/*.*")),
+ ("Messages/fr/LC_MESSAGES", glob.glob("Messages/fr/LC_MESSAGES/*.mo"))
+ ],
+)