3af6ed5e63
- integrate COMMENT
34 lines
686 B
Makefile
34 lines
686 B
Makefile
# $OpenBSD: Makefile,v 1.20 2001/04/10 15:30:08 naddy Exp $
|
|
|
|
COMMENT= "GNU Bourne Again Shell"
|
|
|
|
DISTNAME= bash-1.14.7
|
|
PKGNAME= ${DISTNAME}p1
|
|
CATEGORIES= shells
|
|
NEED_VERSION= 1.364
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= bash
|
|
|
|
HOMEPAGE= http://www.gnu.org/software/bash/
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
FLAVORS= static
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L} == "static"
|
|
MAKE_ENV= CPP_DEFINES="-DSYSDEP_LDFLAGS=-static"
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/documentation/builtins.1 \
|
|
${PREFIX}/man/man1/bash_builtins.1
|
|
@strip ${PREFIX}/bin/bash
|
|
|
|
.include <bsd.port.mk>
|