svn commit: r531894 - head/net/geoipupdate

Adam Weinberger adamw at FreeBSD.org
Fri Apr 17 01:22:08 UTC 2020


Author: adamw
Date: Fri Apr 17 01:22:08 2020
New Revision: 531894
URL: https://svnweb.freebsd.org/changeset/ports/531894

Log:
  geoipupdate: Fix version string
  
  geoipupdate needs to be told which version it is. This version appears
  only in some info strings, but it's still worth having it be correct.

Modified:
  head/net/geoipupdate/Makefile

Modified: head/net/geoipupdate/Makefile
==============================================================================
--- head/net/geoipupdate/Makefile	Fri Apr 17 01:17:05 2020	(r531893)
+++ head/net/geoipupdate/Makefile	Fri Apr 17 01:22:08 2020	(r531894)
@@ -4,6 +4,7 @@
 PORTNAME=	geoipupdate
 PORTVERSION=	4.3.0
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	net geography
 
 MAINTAINER=	adamw at FreeBSD.org
@@ -22,7 +23,8 @@ GH_ACCOUNT=	maxmind
 
 MAKE_ENV+=	GOPATH=${WRKSRC} \
 		CONFFILE=${PREFIX}/etc/GeoIP.conf \
-		DATADIR=${PREFIX}/share/GeoIP
+		DATADIR=${PREFIX}/share/GeoIP \
+		VERSION=${DISTVERSIONFULL}
 
 GH_SUBDIR=	src/github.com/maxmind/geoipupdate/v4
 GH_TUPLE=	gofrs:flock:v0.7.1:flock/src/github.com/gofrs/flock \


More information about the svn-ports-all mailing list