06c98b8989
Submitted by: Peter Avalos <pavalos@theshell.com> PR: 43459
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: bash
|
|
# Date created: 21 August 1994
|
|
# Whom: jkh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bash
|
|
PORTVERSION= 2.05b.004
|
|
PORTREVISION?= 0
|
|
CATEGORIES= shells
|
|
MASTER_SITES= ${MASTER_SITE_GNU} \
|
|
ftp://ftp.cwru.edu/pub/bash/
|
|
MASTER_SITE_SUBDIR= bash
|
|
DISTFILES= bash-${PORTVERSION:C/\....$//}.tar.gz
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES+= bash-doc-${PORTVERSION:C/\....$//}.tar.gz
|
|
.endif
|
|
|
|
PATCH_SITES= ftp://ftp.cwru.edu/pub/bash/bash-2.05b-patches/ \
|
|
${MASTER_SITE_LOCAL}
|
|
PATCH_SITE_SUBDIR= obrien
|
|
PATCHFILES= bash205b-001 bash205b-002 bash205b-003 bash205b-004
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
WRKSRC= ${WRKDIR}/bash-${PORTVERSION:C/\....$//}
|
|
GNU_CONFIGURE= Yes
|
|
CONFIGURE_ARGS= --with-installed-readline
|
|
CONFIGURE_ENV= LDFLAGS=-static
|
|
MAN1= bash.1 bashbug.1
|
|
|
|
post-install:
|
|
${CP} /etc/shells /etc/shells.bak
|
|
(${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; ${ECHO_CMD} ${PREFIX}/bin/bash) >/etc/shells
|
|
${RM} /etc/shells.bak
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} \
|
|
${WRKDIR}/doc/article.ps \
|
|
${WRKDIR}/doc/bashref.ps \
|
|
${DOCSDIR}
|
|
${INSTALL_MAN} \
|
|
${WRKDIR}/doc/article.txt \
|
|
${DOCSDIR}
|
|
${BZIP2_CMD} -f ${DOCSDIR}/*.ps
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
CONFIGURE_TARGET:= --build=${CONFIGURE_TARGET}
|