diff options
Diffstat (limited to 'shells/bash/Makefile')
-rw-r--r-- | shells/bash/Makefile | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile index 47b5059ded6c..6563d2230266 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -1,6 +1,7 @@ PORTNAME= bash -PATCHLEVEL= 37 -PORTVERSION= 5.2.${PATCHLEVEL:S/^0//g} +PATCHLEVEL= 3 +PORTVERSION= 5.3.${PATCHLEVEL:S/^0//g} +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= GNU DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -33,14 +34,13 @@ INFO= bash PORTDOCS= FAQ INTRO CHANGES COMPAT NEWS POSIX RBASH README \ bash.html bashref.html -OPTIONS_DEFINE= FDESCFS PORTS_READLINE HELP NLS STATIC SYSBASHRC \ +OPTIONS_DEFINE= FDESCFS HELP NLS STATIC SYSBASHRC \ SYSLOG DOCS -OPTIONS_DEFAULT= HELP PORTS_READLINE +OPTIONS_DEFAULT= HELP SYSBASHRC OPTIONS_SUB= yes FDESCFS_DESC= Enable use of /dev/fd HELP_DESC= Enable builtin help -PORTS_READLINE_DESC= libreadline from ports instead of bundled one SYSBASHRC_DESC= Enable system-wide rc files FDESCFS_CONFIGURE_ENV_OFF= bash_cv_dev_fd=absent @@ -50,14 +50,16 @@ HELP_CONFIGURE_ENABLE= help-builtin NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -PORTS_READLINE_BUILD_DEPENDS= readline>=8.2:devel/readline -PORTS_READLINE_USES= readline -PORTS_READLINE_CONFIGURE_WITH= installed-readline +# Needs readline 8.3 +# See: 288208, 288207 +#PORTS_READLINE_BUILD_DEPENDS= readline>=8.2:devel/readline +#PORTS_READLINE_USES= readline +#PORTS_READLINE_CONFIGURE_WITH= installed-readline .if empty(PKGNAMESUFFIX) -CONFLICTS+= bash-static bash52-static +CONFLICTS+= bash-static .else -CONFLICTS+= bash bash52 +CONFLICTS+= bash .endif CONFLICTS+= bashc |