diff options
author | swills <swills@FreeBSD.org> | 2014-05-31 02:34:29 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-05-31 02:34:29 +0800 |
commit | aff5badfaf3670e30f328cfcd95b38f424535a80 (patch) | |
tree | 71d21c296171786ae39a9a134e7ccad6bb2f17ec /Mk | |
parent | 765a671c754bba7c3dc1a2a449d3065479823c97 (diff) | |
download | freebsd-ports-gnome-aff5badfaf3670e30f328cfcd95b38f424535a80.tar.gz freebsd-ports-gnome-aff5badfaf3670e30f328cfcd95b38f424535a80.tar.zst freebsd-ports-gnome-aff5badfaf3670e30f328cfcd95b38f424535a80.zip |
- Force use of libreadline from ports rather than base, in order to avoid
unexpectedly getting readline from ports if it's already installed.
- Add patch to work with newer libreadline
- Provide an option to use libedit from ports, avoiding the libedit in base.
- Note 1: The patch to work with newer libreadline is only applied in the
libreadline case since it actually breaks building with libedit.
- Note 2: libreadline is not BSD licensed and while libedit would be
preferable, it seems to have issues with UTF8 still, see ruby bug 9204. Once
that's resolved, we can make libedit the default.
PR: ports/187928 [1] (based on)
PR: ports/188077 [2] (based on)
Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org> [1]
Submitted by: Christoph Moench-Tegeder <cmt@burggraben.net> [2]
Obtained from: http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/readline/readline.c?r1=43458&r2=45225 (ruby upstream)
MFH: 2014Q2
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.ruby.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.ruby.mk b/Mk/bsd.ruby.mk index c4449adb52e6..371778c8b4b0 100644 --- a/Mk/bsd.ruby.mk +++ b/Mk/bsd.ruby.mk @@ -193,7 +193,7 @@ RUBY21= "@comment " # Ruby 2.0 # RUBY_RELVERSION= 2.0.0 -RUBY_PORTREVISION= 5 +RUBY_PORTREVISION= 6 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 353 @@ -209,7 +209,7 @@ RUBY21= "@comment " # Ruby 2.1 # RUBY_RELVERSION= 2.1.1 -RUBY_PORTREVISION= 1 +RUBY_PORTREVISION= 2 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 0 |