im.pidgin.pidgin.2.2.2: 8618402b02e66a60b5412c15cc22dbca48a466d3
lschiere at pidgin.im
lschiere at pidgin.im
Sun Oct 21 01:16:45 EDT 2007
-----------------------------------------------------------------
Revision: 8618402b02e66a60b5412c15cc22dbca48a466d3
Ancestor: a293dc5a891d5698ff4aa677d67d236dc62d18d8
Author: lschiere at pidgin.im
Date: 2007-10-21T05:02:53
Branch: im.pidgin.pidgin.2.2.2
Modified files:
Makefile.mingw
ChangeLog:
applied changes from 60b78c93bfc38b72c6e9fdde59d0e2507bccc4bd
through 216358713db91ffb0fc0dca95ad096c85290a20f
-------------- next part --------------
============================================================
--- Makefile.mingw b13e05c060adc4fc2d2abe82f5a66c9e1e6ed083
+++ Makefile.mingw 475dfca955403000a8bad0926e483dcb71debb19
@@ -36,6 +36,9 @@ GTK_INSTALL_VERSION = $(shell \
echo $$gtk_version \
)
+STRIPPED_RELEASE_DIR = $(PIDGIN_TREE_TOP)/pidgin-$(PIDGIN_VERSION)-win32bin
+
+
# Any *.dll or *.exe files included in win32-install-dir that we don't compile
# should be included in this list so they don't get stripped
EXTERNAL_DLLS = \
@@ -71,25 +74,29 @@ create_release_install_dir: install
$(MAKE) -C share -f $(MINGW_MAKEFILE) install
create_release_install_dir: install
- rm -rf $(PIDGIN_INSTALL_DIR).release
- cp -R $(PIDGIN_INSTALL_DIR) $(PIDGIN_INSTALL_DIR).release
- find $(PIDGIN_INSTALL_DIR).release \( -name '*.dll' -o -name '*.exe' \) \
+ rm -rf $(STRIPPED_RELEASE_DIR)
+ cp -R $(PIDGIN_INSTALL_DIR) $(STRIPPED_RELEASE_DIR)
+ find $(STRIPPED_RELEASE_DIR) \( -name '*.dll' -o -name '*.exe' \) \
-not \( -false $(EXTERNAL_DLLS_FIND_EXP) \) -exec $(STRIP) --strip-unneeded {} ';'
installer: create_release_install_dir
- $(MAKENSIS) /V3 /DPIDGIN_VERSION="$(PIDGIN_VERSION)" /DPIDGIN_PRODUCT_VERSION="$(PIDGIN_PRODUCT_VERSION)" /DWITH_GTK /DPIDGIN_INSTALL_DIR="$(PIDGIN_INSTALL_DIR).release" /DGTK_INSTALL_VERSION="$(GTK_INSTALL_VERSION)" pidgin/win32/nsis/pidgin-installer.nsi
+ $(MAKENSIS) /V3 /DPIDGIN_VERSION="$(PIDGIN_VERSION)" /DPIDGIN_PRODUCT_VERSION="$(PIDGIN_PRODUCT_VERSION)" /DWITH_GTK /DPIDGIN_INSTALL_DIR="$(STRIPPED_RELEASE_DIR)" /DGTK_INSTALL_VERSION="$(GTK_INSTALL_VERSION)" pidgin/win32/nsis/pidgin-installer.nsi
mv pidgin/win32/nsis/pidgin*.exe ./
installer_nogtk: create_release_install_dir
- $(MAKENSIS) /V3 /DPIDGIN_VERSION="$(PIDGIN_VERSION)" /DPIDGIN_PRODUCT_VERSION="$(PIDGIN_PRODUCT_VERSION)" /DPIDGIN_INSTALL_DIR="$(PIDGIN_INSTALL_DIR).release" /DGTK_INSTALL_VERSION="$(GTK_INSTALL_VERSION)" pidgin/win32/nsis/pidgin-installer.nsi
+ $(MAKENSIS) /V3 /DPIDGIN_VERSION="$(PIDGIN_VERSION)" /DPIDGIN_PRODUCT_VERSION="$(PIDGIN_PRODUCT_VERSION)" /DPIDGIN_INSTALL_DIR="$(STRIPPED_RELEASE_DIR)" /DGTK_INSTALL_VERSION="$(GTK_INSTALL_VERSION)" pidgin/win32/nsis/pidgin-installer.nsi
mv pidgin/win32/nsis/pidgin*.exe ./
installer_debug: install
$(MAKENSIS) /V3 /DPIDGIN_VERSION="$(PIDGIN_VERSION)" /DPIDGIN_PRODUCT_VERSION="$(PIDGIN_PRODUCT_VERSION)" /DPIDGIN_INSTALL_DIR="$(PIDGIN_INSTALL_DIR)" /DDEBUG /DGTK_INSTALL_VERSION="$(GTK_INSTALL_VERSION)" pidgin/win32/nsis/pidgin-installer.nsi
mv pidgin/win32/nsis/pidgin*.exe ./
-installers: installer installer_nogtk installer_debug
+installer_zip: create_release_install_dir
+ rm -f pidgin-$(PIDGIN_VERSION)-win32-bin.zip
+ zip -9 -r pidgin-$(PIDGIN_VERSION)-win32-bin.zip $(STRIPPED_RELEASE_DIR)
+installers: installer installer_nogtk installer_debug installer_zip
+
Doxyfile.mingw: Doxyfile.in
sed -e "s/@PACKAGE@/pidgin/" -e "s/@VERSION@/$(PIDGIN_VERSION)/" -e "s/@top_srcdir@/$(PIDGIN_TREE_TOP)/g" -e "s/@enable_dot@/NO/" Doxyfile.in > Doxyfile.mingw
More information about the Commits
mailing list