From owner-svn-ports-head@freebsd.org Fri Aug 26 08:42:28 2016 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 B5B08A93E4C; Fri, 26 Aug 2016 08:42:28 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8D875E2E; Fri, 26 Aug 2016 08:42:28 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7Q8gR4N018861; Fri, 26 Aug 2016 08:42:27 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7Q8gRfL018857; Fri, 26 Aug 2016 08:42:27 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201608260842.u7Q8gRfL018857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 26 Aug 2016 08:42:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420904 - in head/Mk: . Uses 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.22 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: Fri, 26 Aug 2016 08:42:28 -0000 Author: danfe Date: Fri Aug 26 08:42:27 2016 New Revision: 420904 URL: https://svnweb.freebsd.org/changeset/ports/420904 Log: Do not terminate IGNORE messages with period, it is added by the framework. Modified: head/Mk/Uses/gssapi.mk head/Mk/bsd.ldap.mk head/Mk/bsd.linux-rpm.mk head/Mk/bsd.ruby.mk Modified: head/Mk/Uses/gssapi.mk ============================================================================== --- head/Mk/Uses/gssapi.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/Uses/gssapi.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -87,7 +87,7 @@ gssapi_ARGS= base _local:= ${_A} .if ${_local} == "base" . if ${SSL_DEFAULT} != base -IGNORE= You are using OpenSSL from ports and have selected GSSAPI from base, please select another GSSAPI value. +IGNORE= You are using OpenSSL from ports and have selected GSSAPI from base, please select another GSSAPI value . endif HEIMDAL_HOME= /usr GSSAPIBASEDIR= ${HEIMDAL_HOME} Modified: head/Mk/bsd.ldap.mk ============================================================================== --- head/Mk/bsd.ldap.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.ldap.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -45,7 +45,7 @@ _OPENLDAP_VER!= ${LOCALBASE}/bin/ldapwho .if defined(WANT_OPENLDAP_VER) .if defined(WITH_OPENLDAP_VER) && ${WITH_OPENLDAP_VER} != ${WANT_OPENLDAP_VER} -IGNORE= cannot install: the port wants openldap${WANT_OPENLDAP_VER}-client and you try to install openldap${WITH_OPENLDAP_VER}-client. +IGNORE= cannot install: the port wants openldap${WANT_OPENLDAP_VER}-client and you try to install openldap${WITH_OPENLDAP_VER}-client .endif OPENLDAP_VER= ${WANT_OPENLDAP_VER} .elif defined(WITH_OPENLDAP_VER) Modified: head/Mk/bsd.linux-rpm.mk ============================================================================== --- head/Mk/bsd.linux-rpm.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.linux-rpm.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -47,7 +47,7 @@ NO_BUILD= yes . if ${USE_LINUX} == "c6" || ${USE_LINUX} == "c6_64" || ${USE_LINUX} == "yes" # default to CentOS # Do not build CentOS 6 ports if overridden by f10 . if defined(OVERRIDE_LINUX_NONBASE_PORTS) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" -IGNORE= This port requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. +IGNORE= requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf . endif . endif Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.ruby.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -138,12 +138,12 @@ RUBY_VER?= ${RUBY_DEFAULT_VER} .if defined(RUBY) .if !exists(${RUBY}) -IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable. +IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable .endif _RUBY_TEST!= ${RUBY} -e 'begin; require "rbconfig"; puts "ok" ; rescue LoadError; puts "error"; end' .if !empty(_RUBY_TEST) && ${_RUBY_TEST} != "ok" -IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable. +IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable .endif _RUBY_CONFIG= ${RUBY} -r rbconfig -e 'C = RbConfig::CONFIG' -e