Description: CMakeLists changes to proper building
 This patch changes the way Boost library is searched in the system so that the
 configuration does not fail. Furthermore, the versioning of the data/ and
 include/ directory are changed so that the debian policy is fulfilled.
Author: Muammar El Khatib <muammar@debian.org>
Last-Update: <2013-12-17>

Index: cegui-mk2-0.8.3/CMakeLists.txt
===================================================================
--- cegui-mk2-0.8.3.orig/CMakeLists.txt	2013-12-17 22:37:15.154553603 +0200
+++ cegui-mk2-0.8.3/CMakeLists.txt	2013-12-17 22:37:15.138553936 +0200
@@ -103,7 +103,7 @@
 find_package(TOLUAPP)
 find_package(PythonInterp)
 find_package(PythonLibs)
-find_package(Boost 1.36.0 COMPONENTS python unit_test_framework system)
+find_package(Boost)
 
 find_package(Doxygen)
 find_package(GTK2 COMPONENTS gtk)
@@ -450,13 +450,13 @@
 endif()
 
 set( CEGUI_VER_INSTALL_SUBDIR "/${CMAKE_PROJECT_NAME}-${CEGUI_VERSION_MAJOR}" )
-set( CEGUI_DATA_INSTALL_DIR "share${CEGUI_VER_INSTALL_SUBDIR}" )
+set( CEGUI_DATA_INSTALL_DIR "share${CEGUI_VER_INSTALL_SUBDIR}.${CEGUI_VERSION_MINOR}.${CEGUI_VERSION_PATCH}" )
 set( CEGUI_DOC_INSTALL_DIR "share/doc${CEGUI_VER_INSTALL_SUBDIR}" )
 
 set( CEGUI_PKGCONFIG_INSTALL_DIR "${CEGUI_LIB_INSTALL_DIR}/pkgconfig" )
 set( CEGUI_MODULE_INSTALL_DIR "${CEGUI_LIB_INSTALL_DIR}/${CMAKE_PROJECT_NAME}-${CEGUI_VERSION_MAJOR}.${CEGUI_VERSION_MINOR}" )
 set( CEGUI_SAMPLE_INSTALL_DIR "${CEGUI_MODULE_INSTALL_DIR}" ) # TODO: put into /samples subdir!
-set( CEGUI_INCLUDE_INSTALL_DIR "include${CEGUI_VER_INSTALL_SUBDIR}" )
+set( CEGUI_INCLUDE_INSTALL_DIR "include${CEGUI_VER_INSTALL_SUBDIR}.${CEGUI_VERSION_MINOR}.${CEGUI_VERSION_PATCH}" )
 
 ################################################################################
 # Deal with files we generate from template files
