mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
524a122453
- Use PORTVERSION instead of hard-coded "2.1.1" [2] Submitted by: bapt [1], sunpoet (myself) [2] Approved by: Rainer Hurling <rhurlin@gwdg.de> (maintainer)
113 lines
4.4 KiB
Makefile
113 lines
4.4 KiB
Makefile
# Created by: Rainer Hurling <rhurlin@gwdg.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= saga
|
|
PORTVERSION= 2.1.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]*$//}/SAGA%20${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= rhurlin@gwdg.de
|
|
COMMENT= System for Automated Geoscientific Analyses
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= swig2.0:${PORTSDIR}/devel/swig20
|
|
LIB_DEPENDS= libproj.so:${PORTSDIR}/graphics/proj \
|
|
libgdal.so:${PORTSDIR}/graphics/gdal \
|
|
libjasper.so:${PORTSDIR}/graphics/jasper \
|
|
libtiff.so:${PORTSDIR}/graphics/tiff \
|
|
libiodbc.so:${PORTSDIR}/databases/libiodbc \
|
|
liblas.so:${PORTSDIR}/devel/liblas \
|
|
libopencv_ml.so:${PORTSDIR}/graphics/opencv
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
CONFIGURE_ARGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
--enable-python
|
|
CONFIGURE_ENV= SWIG="${LOCALBASE}/bin/swig2.0"
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lopencv_core
|
|
# Python no option any more, because it can't be turned off completely
|
|
USE_PYTHON= 2
|
|
USE_LDCONFIG= yes
|
|
USE_WX= 3.0
|
|
USES= compiler:features iconv:wchar_t dos2unix
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
WX_UNICODE= yes
|
|
|
|
DESKTOP_ENTRIES= "SAGA GIS" "${COMMENT}" "${DATADIR}/saga.png" \
|
|
"saga_gui" "Science;Geoscience;Math;" true
|
|
DOS2UNIX_GLOB= *.cpp *.h
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= PGSQL OPENMP HARU VIGRA
|
|
OPTIONS_DEFAULT=PGSQL OPENMP HARU VIGRA
|
|
NO_OPTIONS_SORT=yes
|
|
OPTIONS_SUB= yes
|
|
OPENMP_DESC= Enable Multiprocessing
|
|
HARU_DESC= Enable Haru Free PDF Library
|
|
VIGRA_DESC= Enable 'Vision with Generic Algorithms' Library
|
|
|
|
HARU_BUILD_DEPENDS= ${LOCALBASE}/lib/libhpdf.so:${PORTSDIR}/print/libharu
|
|
# Haru docs are build nevertheless -> failure :-(
|
|
HARU_CFLAGS_OFF= -D_SAGA_DONOTUSE_HARU
|
|
HARU_RUN_DEPENDS= ${LOCALBASE}/lib/libhpdf.so:${PORTSDIR}/print/libharu
|
|
OPENMP_CONFIGURE_ENABLE=openmp
|
|
OPENMP_LDFLAGS= -pthread
|
|
PGSQL_CONFIGURE_OFF= --with-postgresql=no
|
|
PGSQL_CONFIGURE_ON= --with-postgresql=${LOCALBASE}/bin/pg_config
|
|
PGSQL_LIB_DEPENDS= libpq.so:${PORTSDIR}/databases/postgresql93-client
|
|
VIGRA_BUILD_DEPENDS= ${LOCALBASE}/lib/libvigraimpex.so:${PORTSDIR}/graphics/vigra
|
|
VIGRA_RUN_DEPENDS= ${LOCALBASE}/lib/libvigraimpex.so:${PORTSDIR}/graphics/vigra
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# CLANG is not able to handle neither Fortran nor OpenMP
|
|
USE_GCC= yes
|
|
.if ${COMPILER_FEATURES:Mlibc++}
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:${PORTSDIR}/devel/libc++
|
|
CFLAGS+= -isystem ${LOCALBASE}/include/c++/v1
|
|
CXXFLAGS+= -nostdinc++ -isystem ${LOCALBASE}/include/c++/v1
|
|
LDFLAGS+= -L${LOCALBASE}/lib/c++
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e's|wx-config |${WX_CONFIG} |g' \
|
|
${WRKSRC}/configure \
|
|
${WRKSRC}/src/saga_core/saga_gui/Makefile.in \
|
|
${WRKSRC}/src/saga_core/saga_api/Makefile.in \
|
|
${WRKSRC}/src/saga_core/saga_cmd/Makefile.in \
|
|
${WRKSRC}/src/saga_core/saga_gdi/Makefile.in \
|
|
${WRKSRC}/src/modules_contrib/garden/garden_webservices/Makefile.in \
|
|
${WRKSRC}/src/modules_contrib/garden/garden_3d_viewer/Makefile.in \
|
|
${WRKSRC}/src/modules_io/shapes/io_shapes/Makefile.in \
|
|
${WRKSRC}/src/modules_io/grid/io_grid_image/Makefile.in \
|
|
${WRKSRC}/src/modules/pointcloud/pointcloud_tools/Makefile.in \
|
|
${WRKSRC}/src/modules/pointcloud/pointcloud_viewer/Makefile.in \
|
|
${WRKSRC}/src/modules/tin/tin_viewer/Makefile.in \
|
|
${WRKSRC}/src/modules_geostatistics/geostatistics/geostatistics_kriging/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|-lcv|-lopencv_core -lopencv_imgproc|g' \
|
|
${WRKSRC}/src/modules_images/modules_opencv/opencv/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|lib_cv|lib_opencv_core|' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|-lcv |-lopencv_core |' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|\\n"), SAGA_VERSION)| (rev. 1998)\\n"), SAGA_VERSION)|' \
|
|
${WRKSRC}/src/saga_core/saga_gui/dlg_about.cpp
|
|
.if ${ARCH} == "i386" || ${ARCH} == "powerpc"
|
|
@${REINPLACE_CMD} -e 's|typedef unsigned long DWORD;|typedef unsigned int DWORD;|' \
|
|
${WRKSRC}/src/saga_core/saga_api/api_core.h
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/saga_tip.txt ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/saga.png ${STAGEDIR}${DATADIR}
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsaga_api-${PORTVERSION}.so
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_saga_api-${PORTVERSION}.so
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsaga_gdi-${PORTVERSION}.so
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/saga/*.so
|
|
|
|
.include <bsd.port.post.mk>
|