blob: a1d432ffa12960349925376fea7276e265fbd54f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Created by: cartola (Carlos E. G. Carvalho)
# $FreeBSD$
PORTNAME= vigra
DISTVERSION= 1.10.0
PORTREVISION= 2
CATEGORIES= graphics
DISTNAME= ${PORTNAME}-${PORTVERSION}-src-with-docu
MAINTAINER= fluffy@FreeBSD.org
COMMENT= VIGRA stands for "Vision with Generic Algorithms"
LICENSE= MIT
USE_GITHUB=
GH_ACCOUNT= ukoethe
GH_COMMIT= e6c21f3
GH_TAGNAME= ${GH_COMMIT}
FETCH_ARGS?= -Fpr
WRKSRC= ${WRKDIR}/ukoethe-${PORTNAME}-${GH_COMMIT}
USES= cmake
CMAKE_ARGS= -DDEPENDENCY_SEARCH_PREFIX:PATH=${LOCALBASE} \
-DDOCINSTALL:PATH=${DOCSDIR_REL}
USE_LDCONFIG= yes
OPTIONS_DEFINE= HDF5 OPENEXR NUMPY DOCS
OPTIONS_DEFAULT= HDF5 OPENEXR
NUMPY_DESC= NumPy mathematical computing (USE Fortran/GCC47+)
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MHDF5}
CMAKE_ARGS+= -DWITH_HDF5=1
LIB_DEPENDS+= libhdf5.so:${PORTSDIR}/science/hdf5
.else
CMAKE_ARGS+= -DWITH_HDF5=0
.endif
.if ${PORT_OPTIONS:MOPENEXR}
CMAKE_ARGS+= -DWITH_OPENEXR=1
LIB_DEPENDS+= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR
.else
CMAKE_ARGS+= -DWITH_OPENEXR=0
.endif
.if ${PORT_OPTIONS:MNUMPY}
# Should ignore Python3 since commit f51b0b5
#CONFLICTS_BUILD= python3*
CMAKE_ARGS+= -DWITH_VIGRANUMPY=1
USES+= compiler:gcc-c++11-lib
USE_PYTHON= 2
BUILD_DEPENDS+= nosetests:${PORTSDIR}/devel/py-nose
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:${PORTSDIR}/math/py-numpy
#BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx
LIB_DEPENDS+= libboost_python.so:${PORTSDIR}/devel/boost-python-libs
RUN_DEPENDS:= ${BUILD_DEPENDS}
PLIST_SUB+= PYTHON=""
.else
CMAKE_ARGS+= -DWITH_VIGRANUMPY=0
PLIST_SUB+= PYTHON="@comment "
.endif
.include <bsd.port.pre.mk>
# Vigra's CMakeLists.txt does not support disabling those so we hook them
# as dependencies here unconditionally (without OPTIONS=) even though if
# they are not present then Vigra/CMake will do without them (they are not
# mandatory).
#
# Notice that if you define e.g. WITHOUT_VIGRA_TIFF and graphics/tiff is
# installed on your system, then the lib will be picked up by Vigra, the
# dependency will not be recorded by the ports system and later deletion
# of graphics/tiff will break Vigra. Only define WITHOUT_VIGRA_TIFF if you
# do not have graphics/tiff installed and do not want TIFF support in Vigra.
.if !defined(WITHOUT_VIGRA_TIFF)
LIB_DEPENDS+= libtiff.so:${PORTSDIR}/graphics/tiff
.endif
.if !defined(WITHOUT_VIGRA_JPEG)
LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg
.endif
.if !defined(WITHOUT_VIGRA_PNG)
LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png
.endif
.if !defined(WITHOUT_VIGRA_FFTW)
LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3
LIB_DEPENDS+= libfftw3f.so:${PORTSDIR}/math/fftw3-float
.endif
pre-everything::
.if ${PORT_OPTIONS:MNUMPY}
@${ECHO} ""
@${ECHO} "* BEWARE!"
@${ECHO} "* Using py-NumPY implies Fortran and GCC 4.7+ as hard dependencies"
@${ECHO} "* and require all ports, depending on vigra, to set USE_GCC=yes"
@${ECHO} ""
.endif
post-patch:
# FIXME: This is ugly
@${RM} ${WRKSRC}/include/vigra/*.orig
.include <bsd.port.post.mk>
|