Date: Sat, 11 Oct 2014 14:57:48 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370647 - head/graphics/mapserver Message-ID: <201410111457.s9BEvnTY011250@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Sat Oct 11 14:57:48 2014 New Revision: 370647 URL: https://svnweb.freebsd.org/changeset/ports/370647 QAT: https://qat.redports.org/buildarchive/r370647/ Log: - Pass correct value to configure with WMS_CLIENT and WFS_CLIENT option PR: 194266 Submitted by: Julien Cigar<jcigar@ulb.ac.be> Modified: head/graphics/mapserver/Makefile Modified: head/graphics/mapserver/Makefile ============================================================================== --- head/graphics/mapserver/Makefile Sat Oct 11 14:24:05 2014 (r370646) +++ head/graphics/mapserver/Makefile Sat Oct 11 14:57:48 2014 (r370647) @@ -39,7 +39,7 @@ WCS_DESC= WCS Server suppo .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= 2 +USES+= python:2 BUILD_DEPENDS+= swig2.0:${PORTSDIR}/devel/swig20 CMAKE_ARGS+= -DWITH_PYTHON=yes PLIST_SUB+= PYTHON="" @@ -115,7 +115,7 @@ CMAKE_ARGS+= -DWITH_GEOS=0 .endif .if ${PORT_OPTIONS:MPOSTGIS} -USE_PGSQL= yes +USES+= pgsql CMAKE_ARGS+= -DWITH_POSTGIS=1 .else CMAKE_ARGS+= -DWITH_POSTGIS=0 @@ -169,13 +169,13 @@ PROG_FILES= legend scalebar shp2img shp .if ${PORT_OPTIONS:MCLIENT_WMS} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl LIB_DEPENDS+= libgdal.so:${PORTSDIR}/graphics/gdal -CMAKE_ARGS+= -DWITH_CURL=1 -DGDAL=1 -DCLIENT_WMS=1 +CMAKE_ARGS+= -DWITH_CURL=1 -DWITH_GDAL=1 -DWITH_CLIENT_WMS=1 .endif .if ${PORT_OPTIONS:MCLIENT_WFS} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl LIB_DEPENDS+= libgdal.so:${PORTSDIR}/graphics/gdal -CMAKE_ARGS+= -DWITH_CURL=1 -DGDAL=1 -DCLIENT_WFS=1 +CMAKE_ARGS+= -DWITH_CURL=1 -DWITH_GDAL=1 -DWITH_CLIENT_WFS=1 .endif do-install:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410111457.s9BEvnTY011250>