freebsd-ports/multimedia/opentoonz/Makefile
Felix Palmen ddae4e92d8 Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
2022-09-11 12:20:14 +02:00

66 lines
1.9 KiB
Makefile

PORTNAME= opentoonz
DISTVERSIONPREFIX= v
DISTVERSION= 1.5.0
PORTREVISION= 3
CATEGORIES= multimedia
MAINTAINER= rozhuk.im@gmail.com
COMMENT= Open-source full-featured 2D animation creation software
WWW= https://opentoonz.github.io/e/
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= boost-libs>0:devel/boost-libs
LIB_DEPENDS= libfreetype.so:print/freetype2 \
liblz4.so:archivers/liblz4 \
liblzo2.so:archivers/lzo2 \
libmypaint.so:graphics/libmypaint \
libopencv_core.so:graphics/opencv \
libpng.so:graphics/png \
libsuperlu.so:math/superlu \
libturbojpeg.so:graphics/libjpeg-turbo
RUN_DEPENDS= ${LOCALBASE}/bin/ffprobe:multimedia/ffmpeg
USES= cmake:noninja compiler:c++11-lang gl \
gnome jpeg pkgconfig qt:5
USE_GITHUB= yes
USE_GL= gl glew glu glut
USE_QT= core gui multimedia network opengl printsupport \
script serialport svg widgets xml \
buildtools:build linguisttools:build qmake:build
CMAKE_ARGS= -DWITH_SYSTEM_LZO:BOOL=ON \
-DWITH_SYSTEM_SUPERLU:BOOL=ON
CMAKE_SOURCE_PATH= ${WRKSRC}/toonz/sources
OPTIONS_SINGLE= BLASLIB
OPTIONS_SINGLE_BLASLIB= CBLAS GSLCBLAS NETLIB OPENBLAS
OPTIONS_DEFAULT= OPENBLAS
CBLAS_LIB_DEPENDS= libcblas.so:math/cblas
CBLAS_VARS= BLASLIBS="cblas"
CBLAS_DESC= C interface to the legacy Fortran BLAS
GSLCBLAS_LIB_DEPENDS= libgslcblas.so:math/gsl
GSLCBLAS_VARS= BLASLIBS="gslcblas"
GSLCBLAS_DESC= The GNU Scientific Library - mathematical libs
NETLIB_USES= blaslapack:netlib
NETLIB_VARS= BLASLIBS="blas"
OPENBLAS_USES= blaslapack:openblas
OPENBLAS_VARS= BLASLIBS="openblas"
.include <bsd.port.options.mk>
.if defined(WITH_DEBUG)
CXXFLAGS+= -DDEBUG -g3 -ggdb
.else
CXXFLAGS+= -DNDEBUG
.endif
post-extract:
${FIND} ${WRKSRC} -name '*.gitkeep' -delete
post-patch:
@${REINPLACE_CMD} -e "s|find_library(OPENBLAS_LIB NAMES.*|find_library(OPENBLAS_LIB NAMES ${BLASLIBS})|g" \
${WRKSRC}/toonz/sources/CMakeLists.txt
.include <bsd.port.mk>