Date: Sun, 14 Jun 2015 09:36:27 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389621 - head/databases/pyspatialite/files Message-ID: <201506140936.t5E9aRMd085990@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sun Jun 14 09:36:26 2015 New Revision: 389621 URL: https://svnweb.freebsd.org/changeset/ports/389621 Log: databases/pyspatialite: Fix LOCALBASE substitution Fix %%LOCALBASE substitution in patch-setup.cfg causing header detection to fail with: __main__.HeaderNotFoundException: cannot find proj_api.h, bailing out Reported by: antoine, pkg-fallout Differential Revision: https://reviews.freebsd.org/D2704 Modified: head/databases/pyspatialite/files/patch-setup.cfg Modified: head/databases/pyspatialite/files/patch-setup.cfg ============================================================================== --- head/databases/pyspatialite/files/patch-setup.cfg Sun Jun 14 09:33:30 2015 (r389620) +++ head/databases/pyspatialite/files/patch-setup.cfg Sun Jun 14 09:36:26 2015 (r389621) @@ -7,5 +7,5 @@ +[build_ext] +libraries = spatialite,geos,geos_c,proj%%ICONV%% +library-dirs = %%LOCALBASE%%/lib -+include-dirs = %%LOCALBASE/include ++include-dirs = %%LOCALBASE%%/include +with-freexl = True
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506140936.t5E9aRMd085990>