From owner-svn-ports-head@freebsd.org Thu Aug 20 12:13:01 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3195D9BD067; Thu, 20 Aug 2015 12:13:01 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22A14D52; Thu, 20 Aug 2015 12:13:01 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7KCD1ac016778; Thu, 20 Aug 2015 12:13:01 GMT (envelope-from lev@FreeBSD.org) Received: (from lev@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7KCD0Va016777; Thu, 20 Aug 2015 12:13:00 GMT (envelope-from lev@FreeBSD.org) Message-Id: <201508201213.t7KCD0Va016777@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lev set sender to lev@FreeBSD.org using -f From: "Lev A. Serebryakov" Date: Thu, 20 Aug 2015 12:13:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394857 - head/devel/subversion X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Aug 2015 12:13:01 -0000 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@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@electricjellyfish.net # $FreeBSD$ +PORTREVISION= 1 + MAINTAINER= lev@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." ; \