View | Details | Raw Unified | Return to bug 258945 | Differences between
and this patch

Collapse All | Expand All

(-)b/databases/imposm/Makefile (+31 lines)
Added Link Here
1
PORTNAME=	imposm
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.11.1
4
CATEGORIES=	databases
5
6
MAINTAINER=	darcy@dbitech.ca
7
COMMENT=	Imposm imports OpenStreetMap data into PostGIS
8
WWW=		http://imposm.org/docs/imposm3/latest/
9
10
LICENSE=	APACHE20
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
LIB_DEPENDS=	libgeos.so:graphics/geos \
14
		libleveldb.so:databases/leveldb
15
16
USES=		go:modules
17
GO_MODULE=	github.com/omniscale/imposm3
18
GO_TARGET=	./cmd/imposm
19
GO_BUILDFLAGS=	-ldflags "\
20
		-X github.com/omniscale/imposm3.Version=${DISTVERSION}"
21
22
PLIST_FILES=	bin/imposm
23
24
PORTEXAMPLES=	example-mapping.json example-mapping.yml
25
OPTIONS_DEFINE=	EXAMPLES
26
27
post-install-EXAMPLES-on:
28
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
29
	(cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTEXAMPLES}" ${STAGEDIR}${EXAMPLESDIR})
30
31
.include <bsd.port.mk>
(-)b/databases/imposm/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1674549300
2
SHA256 (go/databases_imposm/imposm-v0.11.1/v0.11.1.mod) = 9aa4a2a81d8d8bdce8b45ad927017112d345d37ba85954c942dd49422c78a9da
3
SIZE (go/databases_imposm/imposm-v0.11.1/v0.11.1.mod) = 589
4
SHA256 (go/databases_imposm/imposm-v0.11.1/v0.11.1.zip) = 1887daa48293a460bb64cae3800162329d7e7d455f1421bd3c8bffbc39544cec
5
SIZE (go/databases_imposm/imposm-v0.11.1/v0.11.1.zip) = 834723
(-)b/databases/imposm/pkg-descr (+6 lines)
Added Link Here
1
Imposm is an importer for OpenStreetMap data. It reads PBF files and
2
imports the data into PostgreSQL/PostGIS. It can also automatically
3
update the database with the latest changes from OSM.
4
5
It is designed to create databases that are optimized for rendering
6
(i.e. generating tiles or for WMS services).

Return to bug 258945