summaryrefslogtreecommitdiff
path: root/geography/libspatialite
AgeCommit message (Collapse)AuthorFilesLines
2016-12-12Revert "Specify readline requirement on 30 packages"wiz1-2/+1
Many of these definitely do not depend on readline. So there must be a different underlying problem, and that should be tracked down instead of papering over it.
2016-12-04Recursive revbump from textproc/icu 58.1ryoon2-4/+4
2016-12-04Specify readline requirement on 30 packagesmarino1-1/+2
Solves: /usr/libexec/binutils225/elf/ld.gold: error: cannot find -lreadline The missing specification is obvious on DragonFly because there's no publically accessible version of readline in base.
2016-04-11Recursive revbump from textproc/icu 57.1ryoon2-2/+4
2016-03-22Not MAKE_JOBS_SAFE.joerg1-1/+6
2015-11-27SpatiaLite is an open source library intended to extend the SQLite core toadam6-0/+114
support fully fledged Spatial SQL capabilities. SQLite is intrinsically simple and lightweight: * a single lightweight library implementing the full SQL engine * standard SQL implementation: almost complete SQL-92 * no complex client/server architecture * a whole database simply corresponds to a single monolithic file (no size limits) * any DB-file can be safely exchanged across different platforms, because the internal architecture is universally portable * no installation, no configuration SpatiaLite is smoothly integrated into SQLite to provide a complete and powerful Spatial DBMS (mostly OGC-SFS compliant). Using SQLite + SpatiaLite you can effectively deploy an alternative open source Spatial DBMS roughly equivalent to PostgreSQL + PostGIS.