blob: c9299ed1f2236a0fea13f3a2b94e9a15cd14b281 (
plain)
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
|
# $NetBSD: Makefile,v 1.35 2002/09/26 22:06:29 jlam Exp $
#
DISTNAME= bash-2.05
PKGREVISION= 2
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:=bash/} \
ftp://slc2.ins.cwru.edu/pub/dist/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.gnu.org/software/bash/bash.html
COMMENT= The GNU Bourne Again Shell
# bash is needed to bootstrap buildlink2 on Darwin.
USE_BUILDLINK2= no
GNU_CONFIGURE= yes
MAKE_ENV+= INSTALL_SCRIPT='${INSTALL_SCRIPT}'
.include "../../mk/bsd.prefs.mk"
.if defined(BASH_STATIC) && ${BASH_STATIC} == YES
CONFIGURE_ARGS+= --enable-static-link
.endif
GETTEXTDIR= ${WRKDIR}/.gettext
.if exists(/usr/include/libintl.h)
GETTEXT_PREFIX= /usr
.else
DEPENDS+= gettext-lib>=0.10.35nb1:../../devel/gettext-lib
EVAL_PREFIX+= GETTEXT_PREFIX=gettext-lib
GETTEXT_PREFIX_DEFAULT= ${LOCALBASE}
.endif
# Remove -I$(includedir) from the INCLUDES passed to the compiler. We
# want the build to be completely self-contained.
#
pre-build:
cd ${WRKSRC}; \
files="Makefile.in"; \
for file in $${files}; do \
${SED} -e "s|[ ]*-I\$$(includedir)||" \
$${file} > $${file}.fixed; \
${MV} -f $${file}.fixed $${file}; \
done
# Symlink the correct gettext libraries and headers into a private directory
# that is placed in the library and header search paths.
#
pre-configure:
cd ${GETTEXT_PREFIX}; \
for file in include/libintl.h lib/libintl.*; do \
${MKDIR} ${GETTEXTDIR}/`${DIRNAME} $${file}`; \
${LN} -sf ${GETTEXT_PREFIX}/$${file} ${GETTEXTDIR}/$${file}; \
done
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/bash.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/bashbug.1 ${PREFIX}/man/man1
${TOUCH} /etc/shells
${CP} /etc/shells /etc/shells.bak
(${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak || ${TRUE}; ${ECHO} ${PREFIX}/bin/bash) >/etc/shells
${RM} /etc/shells.bak
.include "../../mk/bsd.pkg.mk"
CPPFLAGS:= -I${GETTEXTDIR}/include ${CPPFLAGS}
CFLAGS:= -I${GETTEXTDIR}/include ${CFLAGS}
LDFLAGS= -L${GETTEXTDIR}/lib
.if ${_USE_RPATH} == "yes"
LDFLAGS+= -Wl,-R${GETTEXT_PREFIX}/lib
.endif
LIBS+= ${LDFLAGS} -lintl
|