Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile.mingw.in
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2006-10-21 23:17:40 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2006-10-21 23:17:40 (GMT)
commit8925dc92e49e1b201c26865771e545fc307a1929 (patch)
tree32536c1059bdaa4f025197a9a6fae850d624ccb1 /Makefile.mingw.in
parentac3550469590c08709a65ef74729b93561331b78 (diff)
*** RELEASE 8.2BETA1 ***
- fixed all boards/Makefile.am, the transformation for i18n was not good enough and was breaking the game missing_letter. - added support for py2exe on windows which allow us to create an embedded package with python, pygtk and pycairo all together - cleanup in boards/* to replace assert by g_assert and remove uneeded includes. - fixed awele to run on windows replace font "12x24" by "sans 12"
Diffstat (limited to 'Makefile.mingw.in')
-rw-r--r--Makefile.mingw.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.mingw.in b/Makefile.mingw.in
index fd0485d..dd748a4 100644
--- a/Makefile.mingw.in
+++ b/Makefile.mingw.in
@@ -18,12 +18,14 @@ LIBXML2_TOP := /libxml2
SDL_TOP := /sdl
CANVAS_TOP := /gnomecanvas
GNUCHESS_TOP := /gnuchess
+GNUCAP_TOP := /gnucap
MAKENSIS := "/c/Program Files/NSIS/makensis.exe"
# These will be copied in the win32-install-dir ready to be packaged.
NEEDED_DLLS = $(GNUCHESS_TOP)/bin/pthreadGC.dll \
$(GNUCHESS_TOP)/bin/libreadline.dll \
+ $(GNUCAP_TOP)/src/MSW/gnucap.exe \
$(GTK_TOP)/bin/gspawn-win32-helper.exe \
$(GNUCHESS_TOP)/bin/gnuchess.exe \
$(GNUWIN32_TOP)/bin/popt1.dll \
@@ -101,6 +103,10 @@ prepack:
cp -r $(GTK_TOP)/lib/gtk-2.0 $(GCOMPRIS_INSTALL_DIR)/lib
cp -r $(GTK_TOP)/lib/pango $(GCOMPRIS_INSTALL_DIR)/lib
+python:
+ cp tools/py2exe/gcompris.py $(GCOMPRIS_INSTALL_DIR)
+ cp tools/py2exe/setup.py $(GCOMPRIS_INSTALL_DIR)
+ cd $(GCOMPRIS_INSTALL_DIR);/c/Python24/python.exe setup.py py2exe;cp dist/library.zip python24.zip;cp dist/*.pyd .;rm -rf dist build;rm -f gcompris.py*;cd ..
installer:
$(MAKENSIS) gcompris-installer.nsi
@@ -129,4 +135,4 @@ prep:
mkdir $(GCOMPRIS_INSTALL_DIR)/share/pixmaps
cp gcompris.png $(GCOMPRIS_INSTALL_DIR)/share/pixmaps
@echo "Create the file gcompris-win-prepack.tar.gz"
- tar -czf gcompris-win-prepack.tar.gz win32-install-dir nsis
+ tar -czf gcompris-win-prepack.tar.gz win32-install-dir nsis tools