Date: Tue, 30 Apr 2019 03:21:02 +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: r500453 - head/graphics/mapserver Message-ID: <201904300321.x3U3L2Cc022151@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Tue Apr 30 03:21:01 2019 New Revision: 500453 URL: https://svnweb.freebsd.org/changeset/ports/500453 Log: - Fix build without fribidi [1] - Fix build with GCC-based architectures [2] - Update and sort options PR: 225336[1], 237598[2] Submitted by: igorz@yandex.ru[1], pkubaj@[2] Modified: head/graphics/mapserver/Makefile Modified: head/graphics/mapserver/Makefile ============================================================================== --- head/graphics/mapserver/Makefile Tue Apr 30 01:25:36 2019 (r500452) +++ head/graphics/mapserver/Makefile Tue Apr 30 03:21:01 2019 (r500453) @@ -3,6 +3,7 @@ PORTNAME= mapserver PORTVERSION= 7.2.2 +PORTREVISION= 1 CATEGORIES= graphics www geography MASTER_SITES= https://download.osgeo.org/mapserver/ @@ -15,24 +16,26 @@ LIB_DEPENDS= libgd.so:graphics/gd \ libproj.so:graphics/proj \ libpng.so:graphics/png \ libgif.so:graphics/giflib \ - libharfbuzz.so:print/harfbuzz \ libsvg.so:graphics/libsvg \ - libfreetype.so:print/freetype2 \ - libprotobuf-c.so:devel/protobuf-c + libfreetype.so:print/freetype2 -USES= cpe cmake jpeg +USES= compiler:c++11-lang cpe cmake gnome jpeg \ + localbase:ldflags CPE_VENDOR= umn -USE_GNOME= libxml2 -LDFLAGS+= -L${LOCALBASE} -pthread +LDFLAGS+= -pthread CMAKE_ARGS+= -DCMAKE_PREFIX_PATH=${LOCALBASE} \ -DCMAKE_INSTALL_PREFIX=${PREFIX} \ -DWITH_GD=1 MAKE_JOBS_UNSAFE= yes -OPTIONS_DEFINE= FRIBIDI CURL GDAL GEOS KML POSTGIS PHP PERL PYTHON \ - WMS WFS WCS FASTCGI DEBUG CAIRO CAIRO_SVG \ - CLIENT_WMS CLIENT_WFS -OPTIONS_DEFAULT= FRIBIDI GDAL GEOS CLIENT_WMS CLIENT_WFS KML CAIRO_SVG +PROG_FILES= legend scalebar shp2img shptree shptreetst shptreevis \ + sortshp msencrypt tile4ms mapserv + +OPTIONS_DEFINE= CAIRO CAIRO_SVG CLIENT_WMS CLIENT_WFS CURL DEBUG \ + FASTCGI FRIBIDI GDAL GEOS HARFBUZZ KML \ + PERL PHP POSTGIS PROTOBUFC PYTHON WCS WFS WMS +OPTIONS_DEFAULT= CAIRO FRIBIDI GDAL GEOS \ + HARFBUZZ POSTGIS PROTOBUFC WCS WFS CAIRO_SVG_DESC= Cairo SVG parser support GDAL_DESC= GDAL library support FRIBIDI_DESC= Fribidi library support @@ -64,12 +67,28 @@ CMAKE_ARGS+= -DWITH_CAIRO=0 .endif .if ${PORT_OPTIONS:MFRIBIDI} -LIB_DEPENDS+= libfribidi.so:converters/fribidi -CMAKE_ARGS+= -DWITH_FRIBIDI=1 +LIB_DEPENDS+= libfribidi.so:converters/fribidi \ + libharfbuzz.so:print/harfbuzz +CMAKE_ARGS+= -DWITH_FRIBIDI=1 -DWITH_HARFBUZZ=1 .else -CMAKE_ARGS+= -DWITH_FRIBIDI=0 +CMAKE_ARGS+= -DWITH_FRIBIDI=0 -DWITH_HARFBUZZ=0 .endif +.if ${PORT_OPTIONS:MHARFBUZZ} +LIB_DEPENDS+= libfribidi.so:converters/fribidi \ + libharfbuzz.so:print/harfbuzz +CMAKE_ARGS+= -DWITH_FRIBIDI=1 -DWITH_HARFBUZZ=1 +.else +CMAKE_ARGS+= -DWITH_FRIBIDI=0 -DWITH_HARFBUZZ=0 +.endif + +.if ${PORT_OPTIONS:MPROTOBUFC} +LIB_DEPENDS+= libprotobuf-c.so:devel/protobuf-c +CMAKE_ARGS+= -DWITH_PROTOBUFC=1 +.else +CMAKE_ARGS+= -DWITH_PROTOBUFC=0 +.endif + .if ${PORT_OPTIONS:MCAIRO_SVG} LIB_DEPENDS+= libcairo.so:graphics/cairo \ libsvg-cairo.so:graphics/libsvg-cairo \ @@ -166,9 +185,6 @@ CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Debug .else CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release .endif - -PROG_FILES= legend scalebar shp2img shptree shptreetst shptreevis \ - sortshp msencrypt tile4ms mapserv .if ${PORT_OPTIONS:MCLIENT_WMS} LIB_DEPENDS+= libcurl.so:ftp/curl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904300321.x3U3L2Cc022151>