mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-27 15:57:28 -07:00
Closes: https://bugs.gentoo.org/630620 Closes: https://bugs.gentoo.org/648130 Closes: https://github.com/gentoo/gentoo/pull/8258 Package-Manager: Portage-2.3.40, Repoman-2.3.9
35 lines
1.7 KiB
Diff
35 lines
1.7 KiB
Diff
--- Uranium-3.1.0-orig/CMakeLists.txt 2017-12-04 18:02:00.000000000 +0200
|
|
+++ Uranium-3.1.0/CMakeLists.txt 2017-12-29 18:57:22.493045527 +0200
|
|
@@ -12,6 +12,16 @@
|
|
|
|
find_package(PythonInterp 3.5.0 REQUIRED)
|
|
|
|
+if(NOT PYTHON_SITE_PACKAGES_DIR)
|
|
+ if(APPLE OR WIN32)
|
|
+ set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages
|
|
+ CACHE STRING "Directory to install Python bindings to")
|
|
+ else()
|
|
+ set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}/dist-packages CACHE
|
|
+ STRING "Directory to install Python bindings to")
|
|
+ endif()
|
|
+endif()
|
|
+
|
|
# # Checks using pylint
|
|
# Note that we use exit 0 here to not mark the build as a failure on check failure
|
|
# In addition, the specified pylint configuration uses the spellchecker plugin. This required python-enchant to be installed.
|
|
@@ -48,11 +58,11 @@
|
|
if(EXISTS /etc/debian_version)
|
|
install(DIRECTORY UM DESTINATION lib${LIB_SUFFIX}/python${PYTHON_VERSION_MAJOR}/dist-packages)
|
|
else()
|
|
- install(DIRECTORY UM DESTINATION lib${LIB_SUFFIX}/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages)
|
|
+ install(DIRECTORY UM DESTINATION ${PYTHON_SITE_PACKAGES_DIR})
|
|
endif()
|
|
install(FILES ${CMAKE_SOURCE_DIR}/cmake/UraniumTranslationTools.cmake
|
|
- DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}/Modules/ )
|
|
+ DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake/Modules/ )
|
|
install(DIRECTORY resources DESTINATION ${CMAKE_INSTALL_DATADIR}/uranium)
|
|
-install(DIRECTORY plugins DESTINATION lib${LIB_SUFFIX}/uranium)
|
|
+install(DIRECTORY plugins DESTINATION ${CMAKE_INSTALL_LIBDIR}/uranium)
|
|
|
|
include(CPackConfig.cmake)
|