5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
86 lines
2.2 KiB
Makefile
86 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2006/04/06 06:22:44 reed Exp $
|
|
|
|
DISTNAME= bash-3.1
|
|
PKGNAME= bash-3.1pl1
|
|
PKGREVISION= 1
|
|
CATEGORIES= shells
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=bash/} \
|
|
ftp://ftp.cwru.edu/pub/bash/
|
|
|
|
PATCH_SITES= ${MASTER_SITES:=bash-3.1-patches/}
|
|
PATCHFILES= bash31-001
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/bash/bash.html
|
|
COMMENT= The GNU Bourne Again Shell
|
|
|
|
CONFLICTS= static-bash-[0-9]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= makeinfo
|
|
USE_PKGLOCALEDIR= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ENV+= INSTALL_SCRIPT=${INSTALL_SCRIPT:Q}
|
|
CPPFLAGS+= -DDEFAULT_PATH_VALUE="\"/usr/bin:/bin:/usr/pkg/bin:/usr/local/bin\""
|
|
TEST_TARGET= test
|
|
|
|
INFO_FILES= # PLIST
|
|
PKG_SHELL= bin/bash
|
|
|
|
# All features enabled by default.
|
|
CONFIGURE_ARGS+= --enable-readline
|
|
CONFIGURE_ARGS+= --enable-progcomp
|
|
CONFIGURE_ARGS+= --enable-process-substitution
|
|
CONFIGURE_ARGS+= --enable-job-control
|
|
CONFIGURE_ARGS+= --enable-history
|
|
CONFIGURE_ARGS+= --enable-help-builtin
|
|
CONFIGURE_ARGS+= --enable-extended-glob
|
|
CONFIGURE_ARGS+= --enable-dparen-arithmetic
|
|
CONFIGURE_ARGS+= --enable-directory-stack
|
|
CONFIGURE_ARGS+= --enable-debugger
|
|
CONFIGURE_ARGS+= --enable-cond-regexp
|
|
CONFIGURE_ARGS+= --enable-alias
|
|
CONFIGURE_ARGS+= --enable-brace-expansion
|
|
CONFIGURE_ARGS+= --enable-array-variables
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.bash
|
|
PKG_SUPPORTED_OPTIONS= multibyte static
|
|
PKG_SUGGESTED_OPTIONS= multibyte
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
##
|
|
## Static link
|
|
##
|
|
.if !empty(PKG_OPTIONS:Mstatic)
|
|
CONFIGURE_ARGS+= --enable-static-link
|
|
BUILDLINK_DEPMETHOD.gettext= build
|
|
BUILDLINK_DEPMETHOD.readline= build
|
|
.endif
|
|
|
|
##
|
|
## Multibyte support
|
|
##
|
|
.if empty(PKG_OPTIONS:Mmultibyte)
|
|
CONFIGURE_ENV+= ac_cv_type_wctype_t=no
|
|
.endif
|
|
|
|
# Use "readline" package on Darwin to avoid link erros.
|
|
.if ${OPSYS} == "Darwin"
|
|
CONFIGURE_ARGS+= --with-installed-readline
|
|
|
|
USE_GNU_READLINE= yes
|
|
BUILDLINK_API_DEPENDS.readline+= readline>=4.3
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/bash.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/bashbug.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|