59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2016/12/25 12:42:52 wiz Exp $
|
|
|
|
DISTNAME= opencv-2.4.11
|
|
PKGREVISION= 3
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opencvlibrary/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= anthony.mallet@laas.fr
|
|
HOMEPAGE= http://code.opencv.org/projects/OpenCV/wiki/WikiStart
|
|
COMMENT= Library for computer vision problems
|
|
LICENSE= modified-bsd
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
INSTALLATION_DIRS+= share/doc/opencv/papers
|
|
INSTALLATION_DIRS+= share/doc/opencv/ref/pics
|
|
INSTALLATION_DIRS+= share/OpenCV/haarcascades
|
|
|
|
PKGCONFIG_OVERRIDE+= opencv.pc.cmake.in
|
|
|
|
REPLACE_PYTHON+= samples/python/*.py
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/a$//}
|
|
|
|
# jasper uses SIZE_MAX and friends in its headers.
|
|
CXXFLAGS+= -D__STDC_LIMIT_MACROS
|
|
|
|
# includes configure output and paths to gmake etc.
|
|
CHECK_WRKREF_SKIP= ${PREFIX}/lib/libopencv_core.*
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
CXXFLAGS+= -std=c++11
|
|
.endif
|
|
|
|
CMAKE_ARGS+= -DZLIB_ROOT=${BUILDLINK_PREFIX.zlib}
|
|
CMAKE_ARGS.SunOS+= -DENABLE_PRECOMPILED_HEADERS=NO
|
|
|
|
PLIST_VARS+= opencl
|
|
|
|
.if ${OPSYS} == "Darwin" || ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS" || ${OPSYS} == "Linux" || ${OPSYS} == "FreeBSD"
|
|
PLIST.opencl= yes
|
|
.endif
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/jasper/buildlink3.mk"
|
|
.include "../../graphics/openexr/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|