]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - bash/bash.nm
bash: Fix creation of man pages.
[people/amarx/ipfire-3.x.git] / bash / bash.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = bash
7 version = 4.2
8 release = 10
9
10 groups = System/Tools
11 url = http://www.gnu.org/software/bash/
12 license = GPLv2+
13 summary = Bash is short for born again shell.
14
15 description
16 Bash is the shell, or command language interpreter, that will appear in \
17 the GNU operating system. Bash is an sh-compatible shell that incorporates \
18 useful features from the Korn shell (ksh) and C shell (csh). It is intended \
19 to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
20 end
21
22 source_dl = http://ftp.gnu.org/gnu/bash/
23
24 build
25 requires
26 autoconf
27 automake
28 bison
29 filesystem >= 002
30 ncurses-devel
31 readline-devel
32 texinfo
33 end
34
35 prepare_cmds
36 # Bash uses the RTLD_LAZY option when loading libraries. We want to use
37 # RTLD_NOW (it is defined from <dlfcn.h>:
38 sed -e "s/filename, RTLD_LAZY/filename, RTLD_NOW/" \
39 -i builtins/enable.def
40
41 sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/%{thisapp}|" \
42 Makefile.in
43 end
44
45 configure_options += \
46 --without-bash-malloc \
47 --with-installed-readline
48
49 # Test hangs forever
50 #def test
51 # make tests
52 #end
53
54 install_cmds
55 mkdir -pv %{BUILDROOT}/{etc/profile.d,root}
56
57 # Bash startup files
58 cp -vf %{DIR_SOURCE}/dot_bash_logout %{BUILDROOT}/root/.bash_logout
59 cp -vf %{DIR_SOURCE}/dot_bash_profile %{BUILDROOT}/root/.bash_profile
60 cp -vf %{DIR_SOURCE}/dot_bashrc %{BUILDROOT}/root/.bashrc
61
62 # /etc/profile.d
63 cp -vf %{DIR_SOURCE}/profile.d/* %{BUILDROOT}/etc/profile.d
64
65 ln -svf bash %{BUILDROOT}%{bindir}/sh
66 end
67 end
68
69 packages
70 package %{name}
71 groups += Base Build
72
73 requires
74 coreutils
75 /etc/bashrc
76 /etc/profile
77 end
78
79 provides
80 /bin/bash
81 /bin/sh
82 end
83
84 conflicts
85 filesystem < 002
86 end
87
88 script posttransin
89 # Create /etc/shells, if it does not exist.
90 [ -f "/etc/shells" ] || touch /etc/shells
91
92 found_sh=0
93 found_bash=0
94 while read line; do
95 if [ "/bin/bash" = "${line}" ]; then
96 found_bash=1
97 elif [ "/bin/sh" = "${line}" ]; then
98 found_sh=1
99 fi
100 done < /etc/shells
101
102 if [ "${found_bash}" = "0" ]; then
103 echo "/bin/bash" >> /etc/shells
104 fi
105
106 if [ "${found_sh}" = "0" ]; then
107 echo "/bin/sh" >> /etc/shells
108 fi
109 end
110
111 script postun
112 [ -e "/etc/shells" ] || exit 0
113
114 # Remove /bin/bash and /bin/sh from /etc/shells.
115 while read line; do
116 if [ "/bin/bash" = "${line}" ]; then
117 continue
118 elif [ "/bin/sh" = "${line}" ]; then
119 continue
120 fi
121
122 echo "${line}"
123 done < /etc/shells > /etc/shells.$$
124
125 mv -f /etc/shells{.$$,}
126 end
127 end
128
129 package %{name}-debuginfo
130 template DEBUGINFO
131 end
132 end