wok view busybox/receipt @ rev 12751

busybox: strip
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 10 08:58:00 2012 +0200 (2012-05-10)
parents b18de8ea7bd6
children b7606869e51e
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.20.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="slitaz-base-files glibc-base ncurses-common"
9 BUILD_DEPENDS="bzip2 pam pam-dev uclibc-cross-compiler-i486"
10 AUFS_NOT_SUPPORTED="uclibc-cross-compiler-i486 is not compatible with aufs 8("
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.busybox.net/"
13 WGET_URL="http://www.busybox.net/downloads/$TARBALL"
14 CONFIG_FILES="/etc/dnsd.conf /etc/inetd.conf /etc/udhcpd.conf /etc/resolv.conf /etc/httpd.conf"
16 apply_bb_patchs()
17 {
18 cd $src
19 while read file; do
20 [ -f done.$file ] && continue
21 echo "Apply $file..."
22 patch -p1 < $stuff/$PACKAGE-${VERSION%.*}-$file || return 1
23 touch done.$file
24 done <<EOT
25 tar.u
26 stat.u
27 ris.u
28 zmodules.u
29 printable.u
30 cmdline.u
31 su-nochdir.u
32 diff.u
33 getty.u
34 EOT
35 cp $stuff/$PACKAGE-${VERSION%.*}.config .config
36 }
38 # Rules to compile & install the temporary toolchain.
39 cook_tmp_toolchain()
40 {
41 { stuff=${stuff:-../stuff}
42 apply_bb_patchs &&
43 make oldconfig &&
44 make &&
45 make CONFIG_PREFIX=/tools install
46 } || return 1
47 echo "Chmod 4755 on busybox binary..."
48 chmod 4755 /tools/bin/busybox
49 }
51 # Rules to configure and make the package.
52 compile_rules()
53 {
54 { apply_bb_patchs &&
55 make oldconfig &&
56 make &&
57 make install
58 } || return 1
59 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr $src/_install/bin/busybox
61 # prepare busybox-pam package
62 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
63 make oldconfig && make || return 1
64 strip --strip-unneeded -R .eh_frame -R .eh_frame_hdr busybox
65 mv busybox busybox-pam
67 # prepare busybox-static package
68 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config
69 make oldconfig && make || return 1
70 mv busybox busybox-static
72 # prepare ssfs-busybox package
73 rootfs=$src/ssfs-busybox/usr/share/ssfs/rootfs
74 mkdir -p $rootfs/etc
75 cp $stuff/$PACKAGE-${VERSION%.*}.config-ssfs .config
76 make oldconfig && make busybox &&
77 make CONFIG_PREFIX=$rootfs install || return 1
78 cp $stuff/busybox.conf-ssfs $rootfs/etc/busybox.conf
79 chown -R 0.0 $rootfs/etc
80 chmod 0600 $rootfs/etc/busybox.conf
81 chmod 4755 $rootfs/bin/busybox
82 }
84 # Rules to gen a SliTaz package suitable for Tazpkg.
85 genpkg_rules()
86 {
87 cp -a $src/_install/* $fs
88 rm -f $fs/bin/bbconfig $fs/usr/bin/ar
89 mkdir -p $fs/etc/init.d $fs/var
91 # Busybox config files.
92 for f in busybox.conf dnsd.conf udhcpd.conf inetd.conf httpd.conf zcip.script
93 do
94 cp $stuff/$f $fs/etc
95 done
96 chown -R 0.0 $fs/etc
97 chmod 600 $fs/etc/busybox.conf
98 touch $fs/etc/resolv.conf
100 # Daemon scripts.
101 cp $stuff/daemon $fs/etc/init.d
102 DAEMON="crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd udhcpd zcip"
103 for i in $DAEMON; do
104 grep -qi config_$i=y $stuff/$PACKAGE-${VERSION%.*}.config &&
105 ln -s daemon $fs/etc/init.d/$i
106 done
107 rm $fs/linuxrc
108 mkdir -p $fs/etc/modprobe.d
110 # Udhcpc stuff.
111 mkdir -p $fs/usr/share/udhcpc
112 cp $stuff/udhcp.script $fs/usr/share/udhcpc/default.script
113 chmod +x $fs/usr/share/udhcpc/default.script
115 # Httpd stuff.
116 cp -a $stuff/www $fs/var
117 }
119 # Force glibc-2.7 reinstall if 2.3.6 still in use.
120 pre_install()
121 {
122 local i
123 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
124 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
125 tazpkg get-install glibc-base --forced
126 fi
127 answer=""
128 for i in $(cat $1$INSTALLED/$PACKAGE/files.list); do
129 [ -f $1$i ] || continue
130 case "$i" in
131 /bin/busybox) continue ;;
132 *bin/*) ;;
133 *) continue ;;
134 esac
135 if [ -z "$answer" ]; then
136 echo -n "Keep installed GNU utilities ? "
137 read -t 30 answer # by default: keep
138 case "$answer" in
139 n*|N*) break;;
140 *) answer="Y";;
141 esac
142 fi
143 cp -a $1$i $1$i-busybox-install
144 done
145 }
147 post_install()
148 {
149 local i
150 [ -f /etc/resolv.conf-busybox-install ] &&
151 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
152 while read i ; do
153 [ -f $1$i-busybox-install ] || continue
154 mv $1$i-busybox-install $1$i
155 done < $1$INSTALLED/$PACKAGE/files.list
156 chmod 4755 $1/bin/busybox
158 # /etc/daemons.conf (tftp + dnsd + httpd may not be present)
159 if ! grep -q ^DNSD_OPTIONS $root/etc/daemons.conf; then
160 echo '# Domain name server options.' >> $root/etc/daemons.conf
161 echo 'DNSD_OPTIONS="-d"' >> $root/etc/daemons.conf
162 echo '' >> $root/etc/daemons.conf
163 fi
164 if ! grep -q ^TFTPD_OPTIONS $root/etc/daemons.conf; then
165 echo '# Tftp daemon options.' >> $root/etc/daemons.conf
166 echo 'TFTPD_OPTIONS="-r /boot"' >> $root/etc/daemons.conf
167 echo '' >> $root/etc/daemons.conf
168 fi
169 if ! grep -q ^HTTPD_OPTIONS $root/etc/daemons.conf; then
170 echo '# Busybox HTTP web server options.' >> $root/etc/daemons.conf
171 echo 'HTTPD_OPTIONS="-u www"' >> $root/etc/daemons.conf
172 echo '' >> $root/etc/daemons.conf
173 fi
174 }
176 pre_remove()
177 {
178 # We can not remove this package !
179 exit 1
180 }