wok view busybox/receipt @ rev 22639

dd_rescue: update $TARBALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 13 21:10:17 2020 +0100 (2020-01-13)
parents c1eb003410dc
children d1f85e376665
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.31.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.busybox.net/"
11 WGET_URL="http://www.busybox.net/downloads/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="slitaz-base-files glibc-base ncurses-common"
15 BUILD_DEPENDS="bzip2 pam pam-dev uclibc-cross-compiler-i486 \
16 musl-libc-dev dietlibc gettext-tools"
18 CONFIG_FILES="/etc/dnsd.conf /etc/inetd.conf /etc/udhcpd.conf \
19 /etc/resolv.conf /etc/httpd.conf"
20 AUFS_NOT_RAMFS="uclibc-cross-compiler-i486 is not compatible with aufs+tmpfs 8("
22 # Handle cross compilation
23 case "$ARCH" in
24 arm*) BUILD_DEPENDS="bzip2" ;;
25 esac
27 # Busybox patches
28 apply_bb_patchs()
29 {
30 sed -i 's|march=|&i486 -mtune=|' arch/i386/Makefile
31 while read file; do
32 [ -f done.$file ] && continue
33 echo "Apply $file..."
34 patch -p1 < $stuff/$PACKAGE-${VERSION%.*}-$file || return 1
35 touch done.$file
36 done <<EOT
37 tar.u
38 stat.u
39 ris.u
40 zmodules.u
41 cmdline.u
42 diff.u
43 diet.u
44 losetup.u
45 fbvnc.u
46 cpio.u
47 shutdown.u
48 scriptreplay.u
49 mkfs_vfat.u
50 ash.u
51 EOT
52 cp $stuff/$PACKAGE-${VERSION%.*}.config .config
53 }
55 # Rules to configure and make the package.
56 compile_rules()
57 {
58 case "$ARCH" in
59 arm*)
60 echo "cook: CROSS_COMPILE=$CROSS_COMPILE"
61 apply_bb_patchs &&
62 cp $stuff/arm/$PACKAGE.config .config
63 make oldconfig | sed 's|ERROR|error|' &&
64 make && make install || return 1
65 chmod 4755 $src/_install/bin/busybox ;;
66 x86_64) echo "TODO" ;;
67 i?86)
68 echo "=== Build busybox ==="
69 sed -i 's|uname -m|echo i486|' Makefile
70 apply_bb_patchs &&
71 make oldconfig | sed 's|ERROR|error|' &&
72 make && make install || return 1
73 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr \
74 $src/_install/bin/busybox
75 mv busybox_unstripped.map busybox-glibc.map
76 mv docs/busybox.1 docs/busybox.base.1
78 # prepare busybox-pam package
79 echo "=== Build busybox-pam ==="
80 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
81 make oldconfig | sed 's|ERROR|error|' && make || return 1
82 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr busybox
83 mv busybox busybox-pam
84 mv busybox_unstripped.map busybox-pam.map
85 mv docs/busybox.1 docs/busybox.pam.1
87 # prepare busybox-static package
88 if [ -x /usr/bin/uclibc-i486-gcc ]; then
89 echo "=== Build busybox-uclibc ==="
90 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config
91 sed -i 's/# CONFIG_ASH_INTERNAL_GLOB is not set/CONFIG_ASH_INTERNAL_GLOB=y/' .config
92 make oldconfig | sed 's|ERROR|error|' && make || return 1
93 cp busybox busybox-static
94 mv busybox busybox-uclibc
95 mv busybox_unstripped.map busybox-uclibc.map
96 mv -f docs/busybox.1 docs/busybox.static.1
97 fi
99 if [ -x /usr/bin/musl-gcc ]; then
100 echo "=== Build busybox-musl ==="
101 # prepare busybox-musl package
102 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config
103 sed -i 's|uclibc-i486-||' .config
104 make oldconfig | sed 's|ERROR|error|' &&
105 make CC=musl-gcc || return 1
106 mv busybox busybox-musl
107 mv busybox_unstripped.map busybox-musl.map
108 mv -f docs/busybox.1 docs/busybox.static.1
109 fi
111 if [ -x /usr/lib/diet/bin/diet ]; then
112 echo "=== Build busybox-diet ==="
113 # prepare busybox-diet package
114 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config
115 sed -i 's|uclibc-i486-||;s|CFLAGS="|&-D_BSD_SOURCE |;s|LDFLAGS="|&-Wl,--allow-multiple-definition |;s|LDLIBS="|&compat rpc |' .config
116 make oldconfig | sed 's|ERROR|error|' &&
117 make CC="/usr/lib/diet/bin/diet gcc" || return 1
118 mv busybox busybox-diet
119 mv busybox_unstripped.map busybox-diet.map
120 mv -f docs/busybox.1 docs/busybox.static.1
121 fi
123 # prepare ssfs-busybox package
124 echo "=== Build busybox-ssfs ==="
125 rootfs=$src/ssfs-busybox/usr/share/ssfs/rootfs
126 mkdir -p $rootfs/etc
127 cp $stuff/$PACKAGE-${VERSION%.*}.config-ssfs .config
128 make oldconfig | sed 's|ERROR|error|' && make busybox &&
129 make CONFIG_PREFIX=$rootfs install || return 1
130 mv busybox_unstripped.map busybox-ssfs.map
131 cp $stuff/busybox.conf-ssfs $rootfs/etc/busybox.conf
132 chown -R 0.0 $rootfs/etc
133 chmod 0600 $rootfs/etc/busybox.conf
134 chmod 4755 $rootfs/bin/busybox
136 # Compile translations
137 echo "=== Build translations ==="
138 make -C $stuff/po install
139 cp docs/busybox.base.1 docs/busybox.1
141 ;;
143 esac
144 }
146 # Cross compilation check.
147 testsuite()
148 {
149 readelf -h $src/_install/bin/busybox
150 }
152 # Keep e2fsprogs kmod & util-linux-mount files
153 REMOVED_SYMLINKS="/bin/mount /bin/mountpoint /bin/umount /sbin/depmod \
154 /sbin/insmod /sbin/modinfo /sbin/modprobe /sbin/rmmod /bin/lsattr /bin/chattr \
155 /sbin/tune2fs"
157 # Rules to gen a SliTaz package suitable for Tazpkg.
158 genpkg_rules()
159 {
160 mkdir -p $install/usr/share/man/man1 $install/usr/share/doc/busybox
161 cp -a $src/_install/* $fs
162 cp -a $src/docs/busybox.base.1 $install/usr/share/man/man1/busybox.1
163 cp -a $src/docs/*.txt $install/usr/share/doc/busybox
164 cp -a $src/docs/*.htm* $install/usr/share/doc/busybox
165 cp -a $src/docs/cgi $install/usr/share/doc/busybox
166 [ -e $fs/sbin/ip ] && ln -s busybox $fs/bin/ip
167 rm -f $fs/bin/bbconfig $fs/usr/bin/ar
168 mkdir -p $fs/etc/init.d $fs/var/spool/cron/crontabs $fs/var/spool/lpd \
169 $fs/var/lib/misc
170 cp $stuff/command_not_found $fs/bin
172 # Busybox config files.
173 for f in busybox.conf dnsd.conf udhcpd.conf inetd.conf httpd.conf \
174 syslog.conf zcip.script
175 do
176 cp $stuff/$f $fs/etc
177 done
178 chown -R 0.0 $fs/etc
179 chmod 600 $fs/etc/busybox.conf
180 touch $fs/etc/resolv.conf
182 # Daemon scripts.
183 cp $stuff/daemon $fs/etc/init.d
184 DAEMON="crond dnsd ftpd httpd inetd lpd klogd ntpd syslogd telnetd tftpd udhcpd zcip"
185 for i in $DAEMON; do
186 grep -qi config_$i=y $stuff/$PACKAGE-${VERSION%.*}.config &&
187 ln -s daemon $fs/etc/init.d/$i
188 done
189 mkdir -p $fs/etc/modprobe.d
191 # Udhcpc stuff.
192 mkdir -p $fs/usr/share/udhcpc
193 cp $stuff/udhcp.script $fs/usr/share/udhcpc/default.script
194 chmod +x $fs/usr/share/udhcpc/default.script
196 # Httpd stuff.
197 ln -s /usr/lib/slitaz/httphelper.sh $fs/usr/bin/httpd_helper.sh
198 cp -a $stuff/www $fs/var
200 # Update copyright year
201 grep -rl 'copy; 2' $fs/var/www | xargs \
202 sed -i "s/copy; [0-9]*/copy; $(date +%Y)/"
204 # Remove kmod & util-linux-mount links
205 for link in $REMOVED_SYMLINKS; do
206 rm -f $fs$link
207 done
208 }
210 # GNU utils stuff.
211 pre_install()
212 {
213 local i
214 [ -s $1/etc/resolv.conf ] &&
215 cp -a $1/etc/resolv.conf $1/etc/resolv.conf-busybox-install
216 answer=""
217 for i in $(cat "$1$INSTALLED/$PACKAGE/files.list"); do
218 [ -f "$1$i" ] || continue
219 case "$i" in
220 /bin/busybox) continue ;;
221 *bin/*) ;;
222 *) continue ;;
223 esac
224 if [ -z "$answer" ]; then
225 echo
226 echo -n "Keep installed GNU utilities ? "
227 read -t 30 answer # by default: keep
228 case "$answer" in
229 n*|N*) break;;
230 *) answer="Y";;
231 esac
232 fi
233 cp -a "$1$i" "$1$i-busybox-install"
234 done
235 }
237 post_install()
238 {
239 local i
240 [ -f $1/etc/resolv.conf-busybox-install ] &&
241 mv -f $1/etc/resolv.conf-busybox-install $1/etc/resolv.conf
242 while read i ; do
243 [ -f "$1$i-busybox-install" ] || continue
244 mv "$1$i-busybox-install" "$1$i"
245 done < "$1$INSTALLED/$PACKAGE/files.list"
246 chmod 4755 "$1/bin/busybox"
248 touch $1/etc/daemons.conf
249 # /etc/daemons.conf (tftp + dnsd + httpd may not be present)
250 if ! grep -q ^DNSD_OPTIONS $1/etc/daemons.conf; then
251 echo '# Domain name server options.' >> $1/etc/daemons.conf
252 echo 'DNSD_OPTIONS="-d"' >> $1/etc/daemons.conf
253 echo '' >> $1/etc/daemons.conf
254 fi
255 if ! grep -q ^TFTPD_OPTIONS $1/etc/daemons.conf; then
256 echo '# Tftp daemon options.' >> $1/etc/daemons.conf
257 echo 'TFTPD_OPTIONS="-r /boot"' >> $1/etc/daemons.conf
258 echo '' >> $1/etc/daemons.conf
259 fi
260 sed -i "s/copy; 20../copy; $(date +%Y)/" $1/var/www/httpd/404.html
261 for link in $REMOVED_SYMLINKS; do
262 [ -e $1$link ] || ln -s /bin/busybox $1$link
263 done
264 }
266 pre_remove()
267 {
268 # We can not remove this package !
269 exit 1
270 }