Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2019 14:28:51 +0000 (UTC)
From:      Olli Hauer <ohauer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r500593 - head/devel/cvs2svn
Message-ID:  <201905011428.x41ESpZH039631@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ohauer
Date: Wed May  1 14:28:50 2019
New Revision: 500593
URL: https://svnweb.freebsd.org/changeset/ports/500593

Log:
  - add decision to include correct py-subversion depending on WITH_SUBVERSION_VER
  - bump PORTREVISION

Modified:
  head/devel/cvs2svn/Makefile

Modified: head/devel/cvs2svn/Makefile
==============================================================================
--- head/devel/cvs2svn/Makefile	Wed May  1 14:05:22 2019	(r500592)
+++ head/devel/cvs2svn/Makefile	Wed May  1 14:28:50 2019	(r500593)
@@ -3,7 +3,7 @@
 
 PORTNAME=	cvs2svn
 PORTVERSION=	2.5.0
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://cvs2svn.tigris.org/files/documents/1462/49543/ \
 		LOCAL/ohauer
@@ -17,6 +17,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}gdbm>0:databases/p
 
 USES=			shebangfix python:2.7
 USE_PYTHON=		distutils autoplist
+
 NO_ARCH=		yes
 
 SHEBANG_FILES=		cvs2svn cvs2git cvs2bzr *.py \
@@ -31,7 +32,15 @@ SUBVERSION_DESC=	Build with subversion support
 GIT_DESC=		Build with git support
 BAZAAR_DESC=		Build with Bazaar support
 
+.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == LTS
+SUBVERSION_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}subversion-lts>=0:devel/py-subversion@${PY_FLAVOR}
+.elif defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 19
+SUBVERSION_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}subversion19>=0:devel/py-subversion@${PY_FLAVOR}
+.else
+# default version
 SUBVERSION_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}subversion>=0:devel/py-subversion@${PY_FLAVOR}
+.endif
+
 GIT_RUN_DEPENDS=	${LOCALBASE}/bin/git:devel/git
 BAZAAR_RUN_DEPENDS=	${LOCALBASE}/bin/bzr:devel/bzr
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905011428.x41ESpZH039631>