- Repocopy textproc/py-sphinx to textproc/py-sphinx18 Update it to 1.8.5 (latest version from 1.8.X). This version supports Python 2 and 3. Add test target. - textproc/py-sphinx: Update to 3.0.2 Python 3 only (3.5+). Add test target. - Mk/Uses/python.mk: Add PY_SPHINX Shared macro to use with flavors and not break ports with USES=python (all versions). Python >=3.5 --> textproc/py-sphinx (v3.0.2) Python < 3.5 --> textproc/py-sphinx18 (v1.8.5) All ports that uses sphinx were changed to use the new variable ${PY_SPHINX} in the dependency line, exceptions: * Ports that fails to build with sphinx 3.0.2 because of code. They are pointing to textproc/py-sphinx18 directly. There aren't many ports. * Ports that doesn't know Python flavors. - Add several patches to fix Sphinx consumers The most common issues are related with pkg-plist, the output files from Sphinx changes between versions, keep this dynamically is the better approach. This will save time in future sphinx updates. PR: 245629 Exp-run by: antoine
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pocl
|
|
PORTVERSION= 1.4
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= lang
|
|
|
|
MAINTAINER= ohartmann@walstatt.org
|
|
COMMENT= POrtable Computing Language (POCL)
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= only tested on x86
|
|
|
|
BUILD_DEPENDS= llvm${LLVM_VERSION}>=0:devel/llvm${LLVM_VERSION} \
|
|
opencl>=2.1:devel/opencl
|
|
LIB_DEPENDS= libhwloc.so:devel/hwloc \
|
|
libOpenCL.so:devel/ocl-icd \
|
|
libltdl.so:devel/libltdl
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
LLVM_VERSION= ${MESA_LLVM_VER:U90}
|
|
|
|
USES= cmake localbase:ldflags ncurses pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DWITH_LLVM_CONFIG="${LOCALBASE}/llvm${LLVM_VERSION}/bin/llvm-config" \
|
|
-DPOCL_INSTALL_PKGCONFIG_DIR="${PREFIX}/libdata/pkgconfig" \
|
|
-DKERNELLIB_HOST_CPU_VARIANTS="distro" \
|
|
-DSINGLE_LLVM_LIB=OFF
|
|
|
|
PLIST_SUB= CONFIGURE_TARGET=${CONFIGURE_TARGET:S/amd64/x86_64/}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_DESC= Build documentation (needs sphinx)
|
|
DOCS_CMAKE_OFF= -DENABLE_DOCS=OFF
|
|
DOCS_CMAKE_ON= -DENABLE_DOCS=ON
|
|
DOCS_USES= python
|
|
DOCS_BUILD_DEPENDS= ${PY_SPHINX}
|
|
|
|
.include <bsd.port.mk>
|