From owner-svn-ports-all@freebsd.org Thu Nov 5 10:14:50 2015 Return-Path: Delivered-To: svn-ports-all@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 CC5CBA27217; Thu, 5 Nov 2015 10:14:50 +0000 (UTC) (envelope-from mmoll@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 9C6E111FD; Thu, 5 Nov 2015 10:14:50 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA5AEnOZ027001; Thu, 5 Nov 2015 10:14:49 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA5AEniS026998; Thu, 5 Nov 2015 10:14:49 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201511051014.tA5AEniS026998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Thu, 5 Nov 2015 10:14:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400831 - in head/lang: ruby20 ruby21 ruby22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Nov 2015 10:14:51 -0000 Author: mmoll Date: Thu Nov 5 10:14:49 2015 New Revision: 400831 URL: https://svnweb.freebsd.org/changeset/ports/400831 Log: lang/ruby2*: correct configure options Fix readline & libedit configure options after a slight error slipped in with the patches done in r400142. PR: 203988 Submitted by: John Hein Modified: head/lang/ruby20/Makefile head/lang/ruby21/Makefile head/lang/ruby22/Makefile Modified: head/lang/ruby20/Makefile ============================================================================== --- head/lang/ruby20/Makefile Thu Nov 5 09:56:50 2015 (r400830) +++ head/lang/ruby20/Makefile Thu Nov 5 10:14:49 2015 (r400831) @@ -59,11 +59,11 @@ CAPIDOCS_BUILD_DEPENDS= doxygen>0:${PORT dot:${PORTSDIR}/graphics/graphviz CAPIDOCS_CONFIGURE_ENABLE= install-capi LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit -LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LIBEDITPREFIX} +LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline -READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${READLINEPREFIX} +READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_RUN_DEPENDS= readline>=0:${PORTSDIR}/devel/readline CPE_VENDOR= ruby-lang Modified: head/lang/ruby21/Makefile ============================================================================== --- head/lang/ruby21/Makefile Thu Nov 5 09:56:50 2015 (r400830) +++ head/lang/ruby21/Makefile Thu Nov 5 10:14:49 2015 (r400831) @@ -62,11 +62,11 @@ CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_CONFIGURE_WITH= gmp GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit -LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LIBEDITPREFIX} +LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline -READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${READLINEPREFIX} +READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_RUN_DEPENDS= readline>=0:${PORTSDIR}/devel/readline CPE_VENDOR= ruby-lang Modified: head/lang/ruby22/Makefile ============================================================================== --- head/lang/ruby22/Makefile Thu Nov 5 09:56:50 2015 (r400830) +++ head/lang/ruby22/Makefile Thu Nov 5 10:14:49 2015 (r400831) @@ -62,11 +62,11 @@ CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_CONFIGURE_WITH= gmp GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit -LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LIBEDITPREFIX} +LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline -READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${READLINEPREFIX} +READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_RUN_DEPENDS= readline>=0:${PORTSDIR}/devel/readline CPE_VENDOR= ruby-lang