Revision
87677
Author
raimue@macports.org
Date
2011-12-01 05:10:20 -0800 (Thu, 01 Dec 2011)

Log Message

shells/bash:
Drop dependency on readline and use the internal readline version shipped
within bash. libreadline API isn't stable and bash seems to rely on internal
symbols. This should fix bash on Tiger, closes #32299.

Modified Paths

Diff

Modified: trunk/dports/shells/bash/Portfile (87676 => 87677)


--- trunk/dports/shells/bash/Portfile	2011-12-01 12:55:41 UTC (rev 87676)
+++ trunk/dports/shells/bash/Portfile	2011-12-01 13:10:20 UTC (rev 87677)
@@ -6,6 +6,7 @@
 set bash_version    4.2
 set bash_patchlevel 10
 version             ${bash_version}.${bash_patchlevel}
+revision            1
 distname            ${name}-${bash_version}
 categories          shells
 platforms           darwin freebsd
@@ -48,13 +49,13 @@
 
 depends_build           bin:grep:grep \
                         bin:bison:bison
-depends_lib             port:gettext \
-                        port:readline
+depends_lib             port:gettext
 
 configure.ldflags-append \
     "-Wl,-search_paths_first -lncurses"
-configure.args          --mandir=${prefix}/share/man --with-installed-readline \
-                        --infodir=${prefix}/share/info
+configure.args          --mandir=${prefix}/share/man \
+                        --infodir=${prefix}/share/info \
+                        --without-installed-readline
 
 if {[variant_isset universal]} {
     configure.args-append "CFLAGS_FOR_BUILD=\"${configure.universal_cflags}\""