1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/math/cgal/Makefile
Jan Beich b324ade02d devel/boost-*: update to 1.64.0
Changes:	http://www.boost.org/users/history/version_1_64_0.html
PR:		218835
Approved by:	office (bapt)
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D10472
2017-05-02 06:48:10 +00:00

40 lines
1.1 KiB
Makefile

# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
# $FreeBSD$
PORTNAME= cgal
PORTVERSION= 4.9
PORTREVISION= 5
CATEGORIES= math
MASTER_SITES= https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.9/
DISTNAME= CGAL-${PORTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Computational geometry library
LICENSE= GPLv3 LGPL3
LICENSE_COMB= multi
BUILD_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:devel/boost-libs
RUN_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:devel/boost-libs
LIB_DEPENDS= libmpfr.so:math/mpfr \
libgmp.so:math/gmp
BROKEN_sparc64= does not build: fails to compile all_files.cpp
USE_LDCONFIG= yes
USES= cmake shebangfix tar:xz
USE_QT5= buildtools_build core gui opengl qmake_build widgets
SHEBANG_FILES= scripts/cgal_create_CMakeLists \
scripts/cgal_create_cmake_script
.include <bsd.port.options.mk>
.if ${ARCH} == i386 && ${OPSYS} == FreeBSD && ((${OSVERSION} >= 1100000 && ${OSVERSION} < 1100508) || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200017))
# clang internal error in clang 3.8
BUILD_DEPENDS+= clang39:devel/llvm39
CC= clang39
CXX= clang++39
.endif
.include <bsd.port.mk>