Magellan Linux

Contents of /trunk/core/bash/bash-3.2-r7.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1101 - (show annotations) (download)
Wed Apr 22 13:26:06 2009 UTC (15 years ago) by niro
File size: 3886 byte(s)
-add UP2PVER if a patchlevel is set
1 # $Header: /magellan-cvs/smage/bash/bash-3.2-r5.smage2,v 1.1 2008/02/09 13:41:59 niro Exp $
2
3 PNAME="bash"
4 PVER="3.2"
5 PBUILD="r7"
6
7 PATCH_LEVEL="48"
8
9 PCATEGORIE="app-shells"
10 STATE="unstable"
11
12 DESCRIPTION="The standard GNU Bourne again shell."
13 HOMEPAGE="http://www.gnu.org/software/bash/bash.html"
14
15 DEPEND=">= sys-libs/ncurses-5.7"
16
17 SRCFILE="${PNAME}-${PVER}.tar.gz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mtools
21
22 SRC_URI=(
23 gnu://${PNAME}/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/dot.bashrc
26 mirror://${PNAME}/dot.bash_profile
27 mirror://${PNAME}/dot.bash_logout
28 mirror://${PNAME}/bashrc
29 mirror://${PNAME}/bash_logout
30 $(for ((i=1;i <= PATCH_LEVEL; i++))
31 do
32 ver=00${i}
33 [[ ${i} -ge 10 ]] && ver=0${i}
34 [[ ${i} -ge 100 ]] && ver=${i}
35 echo "gnu://${PNAME}/${PNAME}-${PVER}-patches/${PNAME}${PVER/./}-${ver}"
36 echo "mirror://${PNAME}/${PNAME}${PVER/./}-${ver}"
37 done)
38 mirror://${PNAME}/${PNAME}-3.0-parallel-build.patch
39 mirror://${PNAME}/${PNAME}-${PVER}-ulimit.patch
40 mirror://${PNAME}/${PNAME}-3.0-trap-fg-signals.patch
41 )
42
43 [[ ! -z ${PATCH_LEVEL} ]] && UP2PVER="${PVER}.${PATCH_LEVEL}"
44 UP2DATE="updatecmd_gnu ${PNAME} gz"
45
46 src_prepare()
47 {
48 munpack ${SRCFILE} || die
49 cd ${SRCDIR}
50
51 # apply all upstream patches
52 local i
53 local ver
54 for ((i=1; i <= PATCH_LEVEL; i++))
55 do
56 ver=00${i}
57 [[ ${i} -ge 10 ]] && ver=0${i}
58 [[ ${i} -ge 100 ]] && ver=${i}
59
60 mpatch ${PNAME}${PVER/./}-${ver} || die
61 done
62
63 # fix parallel make
64 mpatch ${PNAME}-3.0-parallel-build.patch || die
65
66 # other redhat patches:
67
68 # adds more functionality to ulimit
69 mpatch ${PNAME}-${PVER}-ulimit.patch || die
70
71 # don't barf on handled signals in scripts
72 mpatch ${PNAME}-3.0-trap-fg-signals.patch || die
73
74 # enable SSH_SOURCE_BASHRC
75 sed -i 's:^.*\(#define SSH_SOURCE_BASHRC\).*$:\1:' config-top.h || die
76
77 # location of the default mail directory
78 # (not using config-top.h but config.h.in to suppress annoying warnings)
79 sed -i 's:^\(#define DEFAULT_MAIL_DIRECTORY\).*:\1 "/usr/spool/mail":' config.h.in || die
80
81 # run the startup files
82 echo '#define NON_INTERACTIVE_LOGIN_SHELLS' >> config-top.h || die
83
84 # location of system-wide bashrc
85 echo '#define SYS_BASHRC "/etc/bash/bashrc"' >> config-top.h || die
86
87 # location of system-wide bash_logout
88 echo '#define SYS_BASH_LOGOUT "/etc/bash/bash_logout"' >> config-top.h || die
89
90 # Force pgrp synchronization
91 # (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=81653)
92 #
93 # The session will hang cases where you 'su' (not 'su -') and
94 # then run a piped command in emacs.
95 # This problem seem to happen due to scheduler changes kernel
96 # side - although reproduceble with later 2.4 kernels, it is
97 # especially easy with 2.6 kernels.
98 echo '#define PGRP_PIPE 1' >> config-bot.h || die
99 }
100
101 src_compile()
102 {
103 cd ${SRCDIR}
104
105 mconfigure \
106 --bindir=/bin \
107 --disable-profiling \
108 --with-curses \
109 --without-gnu-malloc \
110 || die
111
112 # on x86_64 parallel is broken; patch not work
113 mmake -j1 || die
114 }
115
116 src_install()
117 {
118 cd ${SRCDIR}
119 make DESTDIR=${BINDIR} bindir=/bin install || die
120
121 # some needed symlinks
122 mlink bash /bin/sh || die
123 mlink bash /bin/rbash || die
124
125 # install skeletons
126 for i in bashrc bash_profile bash_logout
127 do
128 minstalletc dot.${i} .${i} /etc/skel || die
129 done
130
131 # install global rcs
132 minstalletc bashrc bashrc /etc/bash || die
133 minstalletc bash_logout bash_logout /etc/bash || die
134
135 minstalldocs ABOUT-NLS AUTHORS CHANGES COMPAT COPYING MANIFEST \
136 NEWS NOTES POSIX RBASH README || die
137 }
138
139 postinstall()
140 {
141 # install skeletons for root, as bash is our default shell
142 if [[ ! -f ${MROOT}/root/.bashrc ]]
143 then
144 install -m0644 ${MROOT}/etc/skel/.bashrc ${MROOT}/root
145 fi
146 if [[ ! -f ${MROOT}/root/.bash_profile ]]
147 then
148 install -m0644 ${MROOT}/etc/skel/.bash_profile ${MROOT}/root
149 fi
150 if [[ ! -f ${MROOT}/root/.bash_logout ]]
151 then
152 install -m0644 ${MROOT}/etc/skel/.bash_logout ${MROOT}/root
153 fi
154 }

Properties

Name Value
svn:keywords Id