summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2014-09-06 01:50:38 +0000
committerobache <obache@pkgsrc.org>2014-09-06 01:50:38 +0000
commit17d2744bf3fe5bdc7ccf04a6c66d419e5fc50652 (patch)
treed80edae18b80906e9ed99e62c06b2b65de71e67b /mk
parent87786eaa5edfe6bff4db59e345ebe8950b352655 (diff)
downloadpkgsrc-17d2744bf3fe5bdc7ccf04a6c66d419e5fc50652.tar.gz
Introduce CMAKE_USE_GNU_INSTALL_DIRS,
If set to yes, set GNU standard installation directories with pkgsrc configured settings for cmake GNUInstallDirs module. The default is yes.
Diffstat (limited to 'mk')
-rw-r--r--mk/configure/cmake.mk18
1 files changed, 13 insertions, 5 deletions
diff --git a/mk/configure/cmake.mk b/mk/configure/cmake.mk
index 65f0b5b91d5..34adaa2ca12 100644
--- a/mk/configure/cmake.mk
+++ b/mk/configure/cmake.mk
@@ -1,4 +1,4 @@
-# $NetBSD: cmake.mk,v 1.11 2014/08/23 19:26:07 wiz Exp $
+# $NetBSD: cmake.mk,v 1.12 2014/09/06 01:50:38 obache Exp $
#
# This file handles packages that use CMake as their primary build
# system. For more information about CMake, see http://www.cmake.org/.
@@ -23,12 +23,17 @@
# buildlink3.mk so that packages that depend on it can find it's
# cmake modules if they use cmake to build.
#
+# CMAKE_USE_GNU_INSTALL_DIRS
+# If set to yes, set GNU standard installation directories with pkgsrc
+# configured settings. The default is yes.
+#
_CMAKE_DIR= ${BUILDLINK_DIR}/cmake-Modules
+CMAKE_USE_GNU_INSTALL_DIRS?= yes
+
CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}
CMAKE_ARGS+= -DCMAKE_MODULE_PATH:PATH=${_CMAKE_DIR}
-CMAKE_ARGS+= -DCMAKE_INSTALL_LIBDIR:PATH=lib
.if ${OPSYS} != "Darwin"
CMAKE_ARGS+= -DCMAKE_SKIP_RPATH:BOOL=TRUE
.else
@@ -37,12 +42,15 @@ CMAKE_ARGS+= -DCMAKE_INSTALL_NAME_DIR:PATH=${PREFIX}/lib
CMAKE_ARGS+= -DOPENAL_INCLUDE_DIR:PATH=/System/Library/Frameworks/OpenAL.framework/Headers
CMAKE_ARGS+= -DOPENGL_INCLUDE_DIR:PATH=/System/Library/Frameworks/OpenGL.framework/Headers
.endif
+.if defined(CMAKE_USE_GNU_INSTALL_DIRS) && empty(CMAKE_USE_GNU_INSTALL_DIRS:M[nN][oO])
+CMAKE_ARGS+= -DCMAKE_INSTALL_LIBDIR:PATH=lib
CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR:PATH=${PKGMANDIR}
-.if defined(INFO_FILES)
+. if defined(INFO_FILES)
CMAKE_ARGS+= -DCMAKE_INSTALL_INFODIR:PATH=${PKGINFODIR}
-.endif
-.if defined(USE_PKGLOCALEDIR) && empty(USE_PKGLOCALEDIR:M[nN][oO])
+. endif
+. if defined(USE_PKGLOCALEDIR) && empty(USE_PKGLOCALEDIR:M[nN][oO])
CMAKE_ARGS+= -DCMAKE_INSTALL_LOCALEDIR:PATH=${PKGLOCALEDIR}/locale
+. endif
.endif
.if defined(CMAKE_PREFIX_PATH)