diff --git a/databases/tile38/Makefile b/databases/tile38/Makefile index a30051b33493..3e2fcbe3b5eb 100644 --- a/databases/tile38/Makefile +++ b/databases/tile38/Makefile @@ -1,50 +1,50 @@ # Created by: olevole@olevole.ru # $FreeBSD$ PORTNAME= tile38 DISTVERSION= 1.12.0 CATEGORIES= databases MAINTAINER= a.andersson.thn@gmail.com COMMENT= In-memory geolocation data store, spatial index, and realtime geofence LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= bash:shells/bash USES= go shebangfix SHEBANG_FILES= build.sh USE_GITHUB= yes GH_ACCOUNT= tidwall USE_RC_SUBR= tile38 SSP_UNSAFE= yes USERS= ${PORTNAME} GROUPS= ${PORTNAME} TILE38_DBDIR= /var/db/tile38 TILE38_RUNDIR= /var/run/tile38 SUB_LIST= PORTNAME=${PORTNAME} \ TILE38_USER=${USERS} \ TILE38_DBDIR=${TILE38_DBDIR} \ TILE38_RUNDIR=${TILE38_RUNDIR} PLIST_SUB= TILE38_USER=${USERS} \ TILE38_GROUP=${GROUPS} \ TILE38_DBDIR=${TILE38_DBDIR} \ TILE38_RUNDIR=${TILE38_RUNDIR} do-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./build.sh do-install: @${MKDIR} ${STAGEDIR}${TILE38_DBDIR} ${STAGEDIR}${TILE38_RUNDIR} ${INSTALL_PROGRAM} ${WRKSRC}/tile38-cli ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/tile38-server ${STAGEDIR}${PREFIX}/bin/ do-test: - @cd ${WRKSRC} && ./build.sh test + @cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ./build.sh test .include diff --git a/databases/tile38/pkg-descr b/databases/tile38/pkg-descr index 0542b93d127b..b3ecce9b803f 100644 --- a/databases/tile38/pkg-descr +++ b/databases/tile38/pkg-descr @@ -1,18 +1,18 @@ Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and realtime geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON. Features: Spatial index with search methods such as NEARBY, WITHIN, and INTERSECTS. Realtime geofencing through persistent sockets or webhooks. Object types of lat/lon, bbox, Geohash, GeoJSON, QuadKey, and XYZ tile. Support for lots of Clients Libraries written in many different languages. Variety of client protocols, including http (curl), websockets, telnet, and the Redis RESP. Server responses are RESP or JSON. Full command line interface. Leader / follower replication. In-memory database that persists on disk. -WWW: http://tile38.com/ +WWW: https://tile38.com/