blob: 66670090271cc97cb5b5e362766a8cc2dff25714 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# ex:ts=8
# New ports collection makefile for: bash
# Date created: 21 August 1994
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= bash
PORTVERSION= 2.05b.007
PORTREVISION?= 4
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= ${MASTER_SITE_GNU:S/$/:gnu/} \
ftp://ftp.cwru.edu/pub/bash/bash-2.05b-patches/ \
${MASTER_SITE_LOCAL:S/$/:local/}
PATCH_SITE_SUBDIR= bash/bash-2.05b-patches/:gnu obrien/:local
PATCHFILES= bash205b-001 bash205b-002 bash205b-003 bash205b-004 \
bash205b-005 bash205b-006 bash205b-007
# msg00029.txt msg00031.txt msg00030.txt
MAINTAINER= obrien@FreeBSD.org
COMMENT= The GNU Bourne Again Shell
.include <bsd.port.pre.mk>
LATEST_LINK= ${PORTNAME}2
USE_REINPLACE= yes
WRKSRC= ${WRKDIR}/bash-${PORTVERSION:C/\....$//}
GNU_CONFIGURE= Yes
CONFIGURE_ARGS= --with-installed-readline
.if defined(WITH_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" ))
CONFIGURE_ARGS+= --enable-static-link
.else
CONFIGURE_ARGS+= --enable-static-link=no
.endif
.if defined(DEBUG)
CONFIGURE_ARGS+= --debug
.endif
MAN1= bash.1 bashbug.1
INFO= bash
post-patch:
@${REINPLACE_CMD} -e "s,.FN /bin/bash,.FN ${PREFIX}/bin/bash," \
${WRKDIR}/${PORTNAME}-${PORTVERSION:R}/doc/bash.1
update-etc-shells:
@${ECHO_MSG} "updating /etc/shells"
@${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
post-install: update-etc-shells
${LN} -f ${PREFIX}/bin/bash ${PREFIX}/bin/bash2
@${MKDIR} ${EXAMPLESDIR}
@cd ${WRKSRC}/examples ; ${PAX} -rw . ${EXAMPLESDIR}
@${FIND} ${EXAMPLESDIR} -type d -print | xargs chmod a+rx
@${CHMOD} -R a+r ${EXAMPLESDIR}
.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}
|