summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Wachter <bwachter-tmw@lart.info>2011-01-07 17:21:08 +0200
committerBernd Wachter <bwachter-tmw@lart.info>2011-01-07 17:21:08 +0200
commitdfca3c3aa8144a1b1fbae49fbeaa94ed1307c067 (patch)
tree77f0c99feff2b910ec5a0a02508685b31d43a695
parent7f944f5af98927f57484ef5273a25fd92180efb4 (diff)
downloadmana-client-dfca3c3aa8144a1b1fbae49fbeaa94ed1307c067.tar.gz
mana-client-dfca3c3aa8144a1b1fbae49fbeaa94ed1307c067.tar.bz2
mana-client-dfca3c3aa8144a1b1fbae49fbeaa94ed1307c067.tar.xz
mana-client-dfca3c3aa8144a1b1fbae49fbeaa94ed1307c067.zip
Add win32 package helper scripts, change README to README.txt for NSIS
-rw-r--r--.gitignore3
-rw-r--r--packaging/windows/package-helpers113
-rw-r--r--packaging/windows/setup.nsi8
-rw-r--r--packaging/windows/toolchain.cmake.example22
4 files changed, 142 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index c1e0a735..944c483e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,6 +19,7 @@ src/mana
*.exe
mana.depend
mana.layout
+README.txt
# files copied in on Windows
include/*
@@ -45,4 +46,4 @@ docs/SOURCE/html/*
[0-9][0-9][0-9][0-9]-*.patch
# static libraries
-*.a \ No newline at end of file
+*.a
diff --git a/packaging/windows/package-helpers b/packaging/windows/package-helpers
new file mode 100644
index 00000000..de953149
--- /dev/null
+++ b/packaging/windows/package-helpers
@@ -0,0 +1,113 @@
+# Helper functions to do win32 cross builds. Source this file, and
+# you'll get a few mana- functions in your shell:
+# - mana-configure-win32 -- runs cmake to configure the source tree
+# for a win32 build
+# - mana-build-win32 -- runs mana-configure-win32, followed by make
+# - mana-build-translations -- copies the translations into a dir
+# structure suitable for nsis
+# - mana-build-nsis -- build the nsis installer (run the other stips
+# first!)
+# - mana-build-win32-installer -- runs all steps required to get the
+# windows installer
+# - mana-nuke-cmake-stuff -- cleans up all files created by cmake
+#
+# A few environement variables can influence those functions:
+# - MANA_BASE -- mana source top directory. Automatically set when
+# you source this file from the top directory, or the windows packaging
+# directory
+# - VERSION -- read from CMakeLists.txt if not specified
+# - TOOLCHAINFILE -- the cmake toolchainfile, searched in top dir,
+# your home, and /build/nightlies. See toolchain.cmake.example
+# for an example file
+# - MANALIBS -- the directory containing the dlls copied into the
+# windows installer. Default is using the last directory in the
+# toolchains SET(CMAKE_FIND_ROOT_PATH
+
+# MANA_BASE should point to the top directory of the source tree
+if [ -z "$MANA_BASE" ]; then
+ if [ -f INSTALL ]; then
+ MANA_BASE=`pwd`
+ elif [ -f setup.nsi ]; then
+ cd ../.. && MANA_BASE=`pwd`
+ else
+ echo "Unable to guess mana base directory, please set MANA_BASE manually"
+ fi
+else
+ echo "MANA_BASE already set to $MANA_BASE, ignoring"
+fi
+
+if [ -z "$VERSION" ]; then
+ VERSION=`grep 'SET(VERSION .*)' $MANA_BASE/CMakeLists.txt | \
+ sed 's/.* //' | sed 's/)//'`
+fi
+echo "Building for version $VERSION"
+
+if [ -z "`which unix2dos`" ]; then
+ echo "You're missing unix2dos. Please install it (probably in dos2unix)."
+fi
+
+# TOOLCHAINFILE should point to a cmake toolchain file,
+# see toolchain.cmake.example
+if [ -z "$TOOLCHAINFILE" ]; then
+ if [ -f $MANA_BASE/toolchain.cmake ]; then
+ TOOLCHAINFILE=$MANA_BASE/toolchain.cmake
+ elif [ -f ~/toolchain.cmake ]; then
+ TOOLCHAINFILE=~/.toolchain.cmake
+ elif [ -f /build/nightlies/toolchain.cmake ]; then
+ TOOLCHAINFILE=/build/nightlies/toolchain.cmake
+ else
+ echo "Unable to find a toolchain file, please set TOOLCHAINFILE manually"
+ fi
+else
+ echo "TOOLCHAINFILE already set to $TOOLCHAINFILE, ignoring"
+fi
+
+if [ -z "$MANALIBS" ]; then
+ MANALIBS=`grep 'SET(CMAKE_FIND_ROOT_PATH ' $TOOLCHAINFILE | \
+ sed 's/\s*)\s*//' | sed 's/.* //'`
+ if [ -z "$MANALIBS" ]; then
+ echo "Unable to guess library directory for MANALIBS"
+ fi
+fi
+
+# configure the build tree for a cross-build, which can be built
+# by just typing 'make'
+mana-configure-win32(){
+ cd $MANA_BASE
+ cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVERSION=$VERSION \
+ -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAINFILE
+}
+
+mana-build-win32(){
+ mana-configure-win32
+ make
+}
+
+# build the translations for use in the nsi
+mana-build-translations(){
+ cd $MANA_BASE/po
+ for i in *.gmo; do
+ _LC=`echo $i|sed 's/\..*//'`
+ mkdir -p ../translations/$_LC/LC_MESSAGES
+ cp -v $i ../translations/$_LC/LC_MESSAGES/mana.mo
+ done
+}
+
+mana-build-nsis(){
+ unix2dos -n $MANA_BASE/README $MANA_BASE/README.txt
+ cd $MANA_BASE/packaging/windows
+ makensis -DDLLDIR=$MANALIBS/lib -DPRODUCT_VERSION=$VERSION -DUPX=true -DEXESUFFIX=/src setup.nsi
+}
+
+# do everything...
+mana-build-win32-installer(){
+ mana-configure-win32
+ mana-build-win32
+ mana-build-translations
+ mana-build-nsis
+}
+
+mana-nuke-cmake-stuff(){
+ find $MANA_BASE -name CMakeFiles -type d -exec rm -Rf '{}' \; 2>/dev/null
+ find $MANA_BASE -name CMakeCache.txt -type f -exec rm '{}' \; 2>/dev/null
+} \ No newline at end of file
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi
index 602fc29f..221b60d6 100644
--- a/packaging/windows/setup.nsi
+++ b/packaging/windows/setup.nsi
@@ -13,6 +13,8 @@
; -DPRODUCT_VERSION=0.1.`date +%Y%m%d`
; -DUPX=upx
; -DEXESUFFIX=/src
+;
+; Make sure that README has DOS line endings, and copy it to README.txt
CRCCheck on
SetCompress off
@@ -83,7 +85,7 @@ SetCompressor /SOLID lzma
; Finish page
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION RunMana
-!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README$\""'
+!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README.txt$\""'
!define MUI_PAGE_CUSTOMFUNCTION_PRE changeFinishImage
!define MUI_FINISHPAGE_LINK "Visit Mana website for the latest news, FAQs and support"
!define MUI_FINISHPAGE_LINK_LOCATION "http://themanaworld.org"
@@ -200,7 +202,7 @@ Section "Core files (required)" SecCore
File "${SRCDIR}\AUTHORS"
File "${SRCDIR}\COPYING"
File "${SRCDIR}\NEWS"
- File "${SRCDIR}\README"
+ File "${SRCDIR}\README.txt"
SetOutPath "$INSTDIR\data\fonts"
File "${SRCDIR}\data\fonts\*.ttf"
SetOutPath "$INSTDIR\data\graphics\gui"
@@ -252,7 +254,7 @@ SectionEnd
Section -AdditionalIcons
WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
CreateShortCut "$SMPROGRAMS\Mana\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
- CreateShortCut "$SMPROGRAMS\Mana\Readme.lnk" "notepad.exe" "$INSTDIR\README"
+ CreateShortCut "$SMPROGRAMS\Mana\Readme.lnk" "notepad.exe" "$INSTDIR\README.txt"
CreateShortCut "$SMPROGRAMS\Mana\FAQ.lnk" "$INSTDIR\docs\FAQ.txt"
CreateShortCut "$SMPROGRAMS\Mana\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
diff --git a/packaging/windows/toolchain.cmake.example b/packaging/windows/toolchain.cmake.example
new file mode 100644
index 00000000..0e99bd37
--- /dev/null
+++ b/packaging/windows/toolchain.cmake.example
@@ -0,0 +1,22 @@
+# the name of the target operating system
+SET(CMAKE_SYSTEM_NAME Windows)
+
+IF (NOT TOOLCHAIN)
+ SET(TOOLCHAIN "i586-mingw32msvc-")
+ENDIF()
+
+# which compilers to use for C and C++
+SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc)
+SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++)
+
+# here is the target environment located
+# the directories specified here should contain two directories,
+# 'include' for the headers, 'lib' for dlls and .a files
+SET(CMAKE_FIND_ROOT_PATH /build/mingw32 /build/tmw-libs )
+
+# adjust the default behaviour of the FIND_XXX() commands:
+# search headers and libraries in the target environment, search
+# programs in the host environment
+set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
+set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
+set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)