Index: Uses/cmake.mk =================================================================== --- Uses/cmake.mk (revision 315161) +++ Uses/cmake.mk (working copy) @@ -36,9 +36,6 @@ # CMAKE_SOURCE_PATH - Path to the source directory # Default: ${WRKSRC} # -# Deprecated variables: -# CMAKE_OUTSOURCE - Instruct to perform an out-of-source build. -# Deprecated, use 'USES+= cmake:outsource' instead. .if !defined(_INCLUDE_USES_CMAKE_MK) _INCLUDE_USES_CMAKE_MK= yes Index: bsd.port.mk =================================================================== --- bsd.port.mk (revision 315161) +++ bsd.port.mk (working copy) @@ -1496,7 +1496,7 @@ .include "${PORTSDIR}/Mk/bsd.xfce.mk" .endif -.if defined(USE_KDE4) || defined(KDE4_BUILDENV) +.if defined(USE_KDE4) .include "${PORTSDIR}/Mk/bsd.kde4.mk" .endif @@ -1506,14 +1506,6 @@ .include "${PORTSDIR}/Mk/bsd.pbi.mk" -.if defined(USE_CMAKE) -. if defined(CMAKE_OUTSOURCE) -USES+= cmake:outsource -. else -USES+= cmake -. endif -.endif - # Loading features .for f in ${USES} _f=${f:C/\:.*//g} Index: bsd.python.mk =================================================================== --- bsd.python.mk (revision 315161) +++ bsd.python.mk (working copy) @@ -669,10 +669,8 @@ # This in turn might cause it to link against version X while using the # includes of version Y, leading to a broken port. # Enforce a certain Python version by using PYTHON_VER for cmake. -.if defined(USE_CMAKE) CMAKE_ARGS+= -DPythonLibs_FIND_VERSION:STRING="${PYTHON_VER}" \ -DPythonInterp_FIND_VERSION:STRING="${PYTHON_VER}" -.endif .endif # !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include)