4b5db4ec8e
- register conflict with bash1 - integrate COMMENT - remove useless HOMEPAGE, improve DESCR - clean-up
37 lines
787 B
Makefile
37 lines
787 B
Makefile
# $OpenBSD: Makefile,v 1.20 2001/04/10 15:32:55 naddy Exp $
|
|
|
|
COMMENT= "GNU Bourne Again Shell"
|
|
|
|
DISTNAME= bash-2.05
|
|
CATEGORIES= shells
|
|
NEED_VERSION= 1.392
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= bash
|
|
DISTFILES= ${DISTNAME}.tar.gz ${DISTNAME:S/-/-doc-/}.tar.gz
|
|
|
|
FLAVORS= static
|
|
FLAVOR?=
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
|
|
.if ${FLAVOR:L} == "static"
|
|
CONFIGURE_ARGS= --enable-static-link
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bash
|
|
cd ${WRKDIR}/doc && \
|
|
${INSTALL_DATA} article.ps article.txt bash.html bash.ps \
|
|
bashbug.ps bashref.html bashref.ps builtins.ps \
|
|
${PREFIX}/share/doc/bash
|
|
|
|
.include <bsd.port.mk>
|