Index: head/databases/tile38/Makefile =================================================================== --- head/databases/tile38/Makefile (revision 557121) +++ head/databases/tile38/Makefile (revision 557122) @@ -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 Index: head/databases/tile38/pkg-descr =================================================================== --- head/databases/tile38/pkg-descr (revision 557121) +++ head/databases/tile38/pkg-descr (revision 557122) @@ -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/