aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2013-06-19 21:44:36 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2013-06-19 21:44:36 +0000
commit68fdbeba167f9b6d51a322db0d70e042138178ce (patch)
tree66308bcca4596901248d8f904ca181871516bac1
parentd44650cb1d504a2e2168b26c5a3c5aebbdc4af61 (diff)
downloadports-68fdbeba167f9b6d51a322db0d70e042138178ce.tar.gz
ports-68fdbeba167f9b6d51a322db0d70e042138178ce.zip
- allow java/subversion-jave to stay on subversion17
- update UPDATING with a hint how to keep subversion17
Notes
Notes: svn path=/head/; revision=321336
-rw-r--r--UPDATING4
-rw-r--r--java/subversion-java/Makefile2
2 files changed, 5 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index 4bb1cebeccf8..85b0da2116b7 100644
--- a/UPDATING
+++ b/UPDATING
@@ -12,7 +12,9 @@ you update your ports collection, before attempting any port upgrades.
devel/subversion has been upgraded from 1.7.10 to 1.8.0
subversion-1.7.x is available as devel/subversion17
- To stay on subversion-1.7.x use the following command
+ To stay on subversion-1.7.x set in /etc/make.conf
+ WITH_SUBVERSION_VER=17
+ and use the following command
# pkg set -o devel/subversion:devel/subversion17
diff --git a/java/subversion-java/Makefile b/java/subversion-java/Makefile
index 3c9203233846..ddb3a45e7fe0 100644
--- a/java/subversion-java/Makefile
+++ b/java/subversion-java/Makefile
@@ -9,6 +9,8 @@ COMMENT= Java bindings for Version control system
.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 16
MASTERDIR= ${.CURDIR}/../../devel/subversion16
+.elif defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 17
+MASTERDIR= ${.CURDIR}/../../devel/subversion16
.else
MASTERDIR= ${.CURDIR}/../../devel/subversion
.endif