Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Jan 2014 08:52:32 +0400 (MSK)
From:      Dmitry Marakasov <amdmi3@amdmi3.ru>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        littlesavage@rambler.ru
Subject:   ports/185957: [PATCH] graphics/mapnik: disable sqlite to allow package building
Message-ID:  <20140121045232.5F7C01BA64@hades.panopticon>
Resent-Message-ID: <201401210500.s0L5002U064822@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         185957
>Category:       ports
>Synopsis:       [PATCH] graphics/mapnik: disable sqlite to allow package building
>Confidential:   no
>Severity:       serious
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 21 05:00:00 UTC 2014
>Closed-Date:
>Last-Modified:
>Originator:     Dmitry Marakasov
>Release:        FreeBSD 10.0-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK
>Description:
Currently, mapnik won't build in default configuration:

---
The SQLite plugin requires libsqlite3 built with RTREE support
Please, reinstall 'databases/sqlite3' port with R*Tree module enabled
---

as databases/sqlite3 has RTREE disabled by default (which is probably correct as it corresponds to default sqlite3 configuration (https://www.sqlite.org/rtree.html).

To make mapnik buildable and its package available, disable the faulty SQLITE3 option.

Port maintainer (littlesavage@rambler.ru) is cc'd.

Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN)
>How-To-Repeat:
>Fix:

--- mapnik-2.2.0_2.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 340547)
+++ Makefile	(working copy)
@@ -32,7 +32,7 @@
 
 NO_OPTIONS_SORT= yes
 OPTIONS_DEFINE=	CAIRO CSV GDAL OGR OSM POSTGIS SQLITE3 JPEG PNG TIFF
-OPTIONS_DEFAULT=	CAIRO CSV GDAL OGR OSM POSTGIS SQLITE3 JPEG PNG TIFF
+OPTIONS_DEFAULT=	CAIRO CSV GDAL OGR OSM POSTGIS JPEG PNG TIFF
 
 CAIRO_DESC=	Enable cairo rendering
 CSV_DESC=	CSV input plugin
--- mapnik-2.2.0_2.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20140121045232.5F7C01BA64>