52 lines
2.3 KiB
PHP
52 lines
2.3 KiB
PHP
# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
|
|
# Released under the MIT license (see packages/COPYING)
|
|
|
|
SUMMARY = "Cross-platform, open-source make system"
|
|
HOMEPAGE = "http://www.cmake.org/"
|
|
BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
|
|
SECTION = "console/utils"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://Copyright.txt;md5=bb2fa3a08736b842556f6171bb9e8ae1 \
|
|
file://Source/cmake.h;beginline=1;endline=10;md5=341736dae83c9e344b53eeb1bc7d7bc2"
|
|
|
|
CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV',1).split('.')[0:2])}"
|
|
|
|
SRC_URI = "http://www.cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
|
|
file://support-oe-qt4-tools-names.patch \
|
|
file://qt4-fail-silent.patch \
|
|
file://cmake-2.8.11.2-FindFreetype.patch \
|
|
"
|
|
|
|
PR = "r1"
|
|
|
|
inherit autotools
|
|
|
|
# Ugly hack to work around undefined OE_QMAKE_PATH_EXTERNAL_HOST_BINS variable
|
|
# and possibly missing qmake binary (qtbase-native can be removed from sysroot
|
|
# e.g. in order to upgrade it, even when there is target qtbase)
|
|
|
|
# Fixes errors like this in cmake(-native).do_configure:
|
|
#| -- Performing Test run_pic_test - Success
|
|
#| CMake Error at tmp-eglibc/sysroots/qemuarm/usr/lib/cmake/Qt5Core/Qt5CoreConfig.cmake:27 (message):
|
|
#| The imported target "Qt5::Core" references the file
|
|
#|
|
|
#| "/qmake"
|
|
#|
|
|
#| but this file does not exist. Possible reasons include:
|
|
|
|
do_configure_prepend() {
|
|
sed -i 's/^find_package(Qt5Core QUIET)$/#find_package(Qt5Core QUIET)/g' ${S}/Tests/RunCMake/CMakeLists.txt
|
|
sed -i 's/^find_package(Qt5Core REQUIRED)/#find_package(Qt5Core REQUIRED)/g' ${S}/Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake
|
|
sed -i 's/^ find_package(Qt5Widgets REQUIRED)/# find_package(Qt5Widgets REQUIRED)/g' ${S}/Tests/QtAutomoc/CMakeLists.txt
|
|
sed -i 's/^find_package(Qt5Core REQUIRED)/#find_package(Qt5Core REQUIRED)/g' ${S}/Tests/Qt4And5Automoc/CMakeLists.txt
|
|
sed -i 's/^ find_package(Qt5Widgets QUIET NO_MODULE)/# find_package(Qt5Widgets QUIET NO_MODULE)/g' ${S}/Tests/CMakeLists.txt
|
|
sed -i 's/^find_package(Qt5Widgets QUIET)/#find_package(Qt5Widgets QUIET)/g' ${S}/Source/QtDialog/CMakeLists.txt
|
|
}
|
|
|
|
# Extra flags to pass to cmake invoked by bootstrap
|
|
CMAKE_EXTRACONF = ""
|
|
|
|
do_configure () {
|
|
${S}/configure --prefix=${prefix} -- ${CMAKE_EXTRACONF}
|
|
}
|