svn commit: r394857 - head/devel/subversion
Lev A. Serebryakov
lev at FreeBSD.org
Thu Aug 20 12:13:01 UTC 2015
Author: lev
Date: Thu Aug 20 12:13:00 2015
New Revision: 394857
URL: https://svnweb.freebsd.org/changeset/ports/394857
Log:
Fix detection of BDBv6.
PR: 202505
Submitted by: emz at norma.perm.ru
Modified:
head/devel/subversion/Makefile
Modified: head/devel/subversion/Makefile
==============================================================================
--- head/devel/subversion/Makefile Thu Aug 20 11:53:46 2015 (r394856)
+++ head/devel/subversion/Makefile Thu Aug 20 12:13:00 2015 (r394857)
@@ -1,6 +1,8 @@
# Created by: rooneg at electricjellyfish.net
# $FreeBSD$
+PORTREVISION= 1
+
MAINTAINER= lev at FreeBSD.org
COMMENT= Version control system
@@ -121,9 +123,9 @@ pre-everything::
pre-configure:
.if ${PORT_OPTIONS:MBDB}
@BDB_VERSION=`${APR_APU_DIR}/${APU_CONFIG} --db-version`; \
- if [ "$${BDB_VERSION}" != "4" -a "$${BDB_VERSION}" != "5" ] ; then \
+ if [ "$${BDB_VERSION}" != "4" -a "$${BDB_VERSION}" != "5" -a "$${BDB_VERSION}" != "6" ] ; then \
${ECHO_MSG} "" ; \
- ${ECHO_MSG} 'You should build `'"devel/apr1' with Berkeley DB (4 or 5) support to use subversion with it." ; \
+ ${ECHO_MSG} 'You should build `'"devel/apr1' with Berkeley DB (4, 5 or 6) support to use subversion with it." ; \
${ECHO_MSG} 'Please rebuild `'"devel/apr1' with option "'`'"${OPT_NAME}' and try again." ; \
${ECHO_MSG} "" ; \
${ECHO_MSG} "Or you can disable Berkeley DB support. Only 'fs' repository backend will be available." ; \
More information about the svn-ports-head
mailing list