diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-10-27 04:51:39 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-10-27 04:51:39 +0000 |
commit | 6650b62e45fa1c9e58c5c2a08345b22432889953 (patch) | |
tree | 753888b60a1844e26eff7474aa304d77054fc467 /shells/bash2/Makefile | |
parent | 4f3fa3c94581b5621caccd8c8a9749b076dc0a8f (diff) | |
download | pkgsrc-6650b62e45fa1c9e58c5c2a08345b22432889953.tar.gz |
get everything in
Diffstat (limited to 'shells/bash2/Makefile')
-rw-r--r-- | shells/bash2/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile new file mode 100644 index 00000000000..577cf35e36f --- /dev/null +++ b/shells/bash2/Makefile @@ -0,0 +1,52 @@ +# New ports collection makefile for: bash +# Version required: 2.01 +# Date created: 21 August 1994 +# Whom: jkh +# +# $NetBSD: Makefile,v 1.1.1.1 1997/10/27 04:51:39 hubertf Exp $ +# FreeBSD Id: Makefile,v 1.26 1997/06/27 23:03:27 ache Exp +# + +DISTNAME= bash-2.01 +CATEGORIES= shells +MASTER_SITES= ftp://slc2.ins.cwru.edu/pub/dist/ \ + ${MASTER_SITE_GNU} +.if !defined(NOPORTDOCS) +DISTFILES= bash-2.01.tar.gz bash-doc-2.01.tar.gz +.endif + +MAINTAINER= ache@FreeBSD.ORG + +GNU_CONFIGURE= Yes +MAN1= bash.1 bashbug.1 + +post-patch: + cp /usr/include/fnmatch.h ${WRKSRC}/lib/glob/fnmatch.h + +pre-install: + if [ ! -s ${PREFIX}/info/dir ]; then \ + ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi + +post-install: + ${CP} /etc/shells /etc/shells.bak + (${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; echo ${PREFIX}/bin/bash) >/etc/shells + ${RM} /etc/shells.bak +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/article.ps \ + ${WRKDIR}/bash-doc-2.01/doc/bashref.ps \ + ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/bash.html \ + ${WRKDIR}/bash-doc-2.01/doc/bashref.html \ + ${WRKDIR}/bash-doc-2.01/doc/bashref_toc.html \ + ${PREFIX}/share/doc/bash + ${INSTALL_MAN} \ + ${WRKDIR}/bash-doc-2.01/doc/article.txt \ + ${PREFIX}/share/doc/bash + ${GZIP_CMD} ${PREFIX}/share/doc/bash/*.ps +.endif + +.include <bsd.port.mk> |