diff options
Diffstat (limited to 'shells/bash/Makefile')
-rw-r--r-- | shells/bash/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/shells/bash/Makefile b/shells/bash/Makefile index 1062baa440fa..935ced4b2c52 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -1,7 +1,6 @@ PORTNAME= bash -PATCHLEVEL= 37 -PORTVERSION= 5.2.${PATCHLEVEL:S/^0//g} -PORTREVISION= 1 +PATCHLEVEL= 3 +PORTVERSION= 5.3.${PATCHLEVEL:S/^0//g} CATEGORIES= shells MASTER_SITES= GNU DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -34,14 +33,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 @@ -51,14 +49,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 bash53-static +CONFLICTS+= bash-static .else -CONFLICTS+= bash bash53 +CONFLICTS+= bash .endif CONFLICTS+= bashc |