svn commit: r436340 - head/databases/phpliteadmin

Nikolai Lifanov lifanov at FreeBSD.org
Fri Mar 17 14:06:36 UTC 2017


Author: lifanov
Date: Fri Mar 17 14:06:34 2017
New Revision: 436340
URL: https://svnweb.freebsd.org/changeset/ports/436340

Log:
  use DISTVERSION correctly
  
  The DISTVERSION should be set to the version componet directly
  instead of substituting dots for dashes when deriving DISTNAME.
  
  Reported by:	mat
  Differential Revision:	https://reviews.freebsd.org/D10002

Modified:
  head/databases/phpliteadmin/Makefile

Modified: head/databases/phpliteadmin/Makefile
==============================================================================
--- head/databases/phpliteadmin/Makefile	Fri Mar 17 14:03:43 2017	(r436339)
+++ head/databases/phpliteadmin/Makefile	Fri Mar 17 14:06:34 2017	(r436340)
@@ -2,10 +2,10 @@
 # $FreeBSD$
 
 PORTNAME=	phpLiteAdmin
-DISTVERSION=	1.9.7.1
+DISTVERSION=	1-9-7-1
 CATEGORIES=	databases www
 MASTER_SITES=	https://bitbucket.org/phpliteadmin/public/downloads/
-DISTNAME=	${PORTNAME}_v${DISTVERSION:S/./-/g}
+DISTNAME=	${PORTNAME}_v${DISTVERSION}
 
 MAINTAINER=	olevole at olevole.ru
 COMMENT=	Web-based database management tool for Sqlite


More information about the svn-ports-head mailing list