diff options
author | mmoll <mmoll@FreeBSD.org> | 2015-11-05 18:14:49 +0800 |
---|---|---|
committer | mmoll <mmoll@FreeBSD.org> | 2015-11-05 18:14:49 +0800 |
commit | 63e72995c537912c7c9f2d43b9d23fdde45ebb39 (patch) | |
tree | 20ba2eb818994fd92435bd2f062b5ccd3328a541 | |
parent | edbe28d0be58aa087abbc0e62af052e0879b97d4 (diff) | |
download | freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.tar.gz freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.tar.zst freebsd-ports-gnome-63e72995c537912c7c9f2d43b9d23fdde45ebb39.zip |
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 <z7dr6ut7gs@snkmail.com>
-rw-r--r-- | lang/ruby20/Makefile | 4 | ||||
-rw-r--r-- | lang/ruby21/Makefile | 4 | ||||
-rw-r--r-- | lang/ruby22/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lang/ruby20/Makefile b/lang/ruby20/Makefile index 2daad5ac124e..c52167146157 100644 --- a/lang/ruby20/Makefile +++ b/lang/ruby20/Makefile @@ -59,11 +59,11 @@ CAPIDOCS_BUILD_DEPENDS= doxygen>0:${PORTSDIR}/devel/doxygen \ 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 diff --git a/lang/ruby21/Makefile b/lang/ruby21/Makefile index 4e2f4d0eb3ad..08ea5a42237c 100644 --- a/lang/ruby21/Makefile +++ b/lang/ruby21/Makefile @@ -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 diff --git a/lang/ruby22/Makefile b/lang/ruby22/Makefile index ee111e569d7b..f658ca28c623 100644 --- a/lang/ruby22/Makefile +++ b/lang/ruby22/Makefile @@ -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 |