wok view busybox/receipt @ rev 11893

busybox: add AUFS_NOT_SUPPORTED
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 29 11:50:38 2012 +0100 (2012-02-29)
parents 439581aa2219
children a5fbfa5737a6
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.18.4"
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 conspy.u
32 httpd.u
33 EOT
34 cp $stuff/$PACKAGE-${VERSION%.*}.config .config
35 }
37 # Rules to compile & install the temporary toolchain.
38 cook_tmp_toolchain()
39 {
40 { stuff=${stuff:-../stuff}
41 apply_bb_patchs &&
42 make oldconfig &&
43 make &&
44 make CONFIG_PREFIX=/tools install
45 } || return 1
46 echo "Chmod 4755 on busybox binary..."
47 chmod 4755 /tools/bin/busybox
48 }
50 # Rules to configure and make the package.
51 compile_rules()
52 {
53 { apply_bb_patchs &&
54 make oldconfig &&
55 make &&
56 make install
57 } || return 1
59 # prepare busybox-pam package
60 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
61 make oldconfig && make || return 1
62 mv busybox busybox-pam
64 # prepare busybox-static package
65 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config
66 make oldconfig && make || return 1
67 mv busybox busybox-static
69 # prepare ssfs-busybox package
70 rootfs=$src/ssfs-busybox/usr/share/ssfs/rootfs
71 mkdir -p $rootfs/etc
72 cp $stuff/$PACKAGE-${VERSION%.*}.config-ssfs .config
73 make oldconfig && make busybox &&
74 make CONFIG_PREFIX=$rootfs install || return 1
75 cp $stuff/busybox.conf-ssfs $rootfs/etc/busybox.conf
76 chown -R 0.0 $rootfs/etc
77 chmod 0600 $rootfs/etc/busybox.conf
78 chmod 4755 $rootfs/bin/busybox
79 }
81 # Rules to gen a SliTaz package suitable for Tazpkg.
82 genpkg_rules()
83 {
84 cp -a $src/_install/* $fs
85 rm -f $fs/bin/bbconfig $fs/usr/bin/ar
86 mkdir -p $fs/etc/init.d $fs/var
88 # Busybox config files.
89 for f in busybox.conf dnsd.conf udhcpd.conf inetd.conf httpd.conf zcip.script
90 do
91 cp $stuff/$f $fs/etc
92 done
93 chown -R 0.0 $fs/etc
94 chmod 600 $fs/etc/busybox.conf
95 touch $fs/etc/resolv.conf
97 # Daemon scripts and init.
98 cp $stuff/daemon $fs/etc/init.d
99 DAEMON="crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd udhcpd zcip"
100 for i in $DAEMON; do
101 grep -qi config_$i=y $stuff/$PACKAGE-${VERSION%.*}.config &&
102 ln -s daemon $fs/etc/init.d/$i
103 done
104 rm $fs/linuxrc
105 mkdir -p $fs/etc/modprobe.d
107 # Udhcpc stuff.
108 mkdir -p $fs/usr/share/udhcpc
109 cp $stuff/udhcp.script $fs/usr/share/udhcpc/default.script
110 chmod +x $fs/usr/share/udhcpc/default.script
112 # Httpd stuff.
113 cp $stuff/httpd_helper.sh $fs/usr/bin
114 chmod +x $fs/usr/bin/httpd_helper.sh
115 cp -a $stuff/www $fs/var
116 }
118 # Force glibc-2.7 reinstall if 2.3.6 still in use.
119 pre_install()
120 {
121 local i
122 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
123 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
124 tazpkg get-install glibc-base --forced
125 fi
126 answer=""
127 for i in $(cat $1$INSTALLED/$PACKAGE/files.list); do
128 [ -f $1$i ] || continue
129 case "$i" in
130 /bin/busybox) continue ;;
131 *bin/*) ;;
132 *) continue ;;
133 esac
134 if [ -z "$answer" ]; then
135 echo -n "Keep installed GNU utilities ? "
136 read -t 30 answer # by default: keep
137 case "$answer" in
138 n*|N*) break;;
139 *) answer="Y";;
140 esac
141 fi
142 cp -a $1$i $1$i-busybox-install
143 done
144 }
146 post_install()
147 {
148 local i
149 [ -f /etc/resolv.conf-busybox-install ] &&
150 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
151 while read i ; do
152 [ -f $1$i-busybox-install ] || continue
153 mv $1$i-busybox-install $1$i
154 done < $1$INSTALLED/$PACKAGE/files.list
155 chmod 4755 $1/bin/busybox
157 # /etc/daemons.conf (tftp + dnsd + httpd may not be present)
158 if ! grep -q ^DNSD_OPTIONS $root/etc/daemons.conf; then
159 echo '# Domain name server options.' >> $root/etc/daemons.conf
160 echo 'DNSD_OPTIONS="-d"' >> $root/etc/daemons.conf
161 echo '' >> $root/etc/daemons.conf
162 fi
163 if ! grep -q ^TFTPD_OPTIONS $root/etc/daemons.conf; then
164 echo '# Tftp daemon options.' >> $root/etc/daemons.conf
165 echo 'TFTPD_OPTIONS="-r /boot"' >> $root/etc/daemons.conf
166 echo '' >> $root/etc/daemons.conf
167 fi
168 if ! grep -q ^HTTPD_OPTIONS $root/etc/daemons.conf; then
169 echo '# Busybox HTTP web server options.' >> $root/etc/daemons.conf
170 echo 'HTTPD_OPTIONS="-u www"' >> $root/etc/daemons.conf
171 echo '' >> $root/etc/daemons.conf
172 fi
173 }
175 pre_remove()
176 {
177 # We can not remove this package !
178 exit 1
179 }