wok view busybox/receipt @ rev 9195

busybox: add conspy fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 09 22:01:54 2011 +0100 (2011-03-09)
parents 4970ea3801f9
children 760fce6062c4
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.18.3"
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.busybox.net/"
12 WGET_URL="http://www.busybox.net/downloads/$TARBALL"
13 CONFIG_FILES="/etc/dnsd.conf /etc/inetd.conf /etc/udhcpd.conf /etc/resolv.conf"
15 apply_bb_patchs()
16 {
17 cd $src
18 while read file; do
19 [ -f done.$file ] && continue
20 echo "Apply $file..."
21 patch -p1 < ../stuff/$PACKAGE-${VERSION%.*}-$file || return 1
22 touch done.$file
23 done <<EOT
24 wget.u
25 tar.u
26 stat.u
27 ris.u
28 zmodules.u
29 printable.u
30 cmdline.u
31 conspy.u
32 EOT
33 cp ../stuff/$PACKAGE-${VERSION%.*}.config .config
34 }
36 # Rules to compile & install the temporary toolchain.
37 cook_tmp_toolchain()
38 {
39 { apply_bb_patchs &&
40 make oldconfig &&
41 make &&
42 make CONFIG_PREFIX=/tools install
43 } || return 1
44 echo "Chmod 4755 on busybox binary..."
45 chmod 4755 /tools/bin/busybox
46 }
48 # Rules to configure and make the package.
49 compile_rules()
50 {
51 { apply_bb_patchs &&
52 make oldconfig &&
53 make &&
54 make install
55 } || return 1
56 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
57 make oldconfig && make || return 1
58 mv busybox busybox-pam
59 cp ../stuff/$PACKAGE-${VERSION%.*}.config-static .config
60 make oldconfig && make || return 1
61 mv busybox busybox-static
62 }
64 # Rules to gen a SliTaz package suitable for Tazpkg.
65 genpkg_rules()
66 {
67 cp -a $src/_install/* $fs
68 rm -f $fs/bin/bbconfig $fs/usr/bin/ar
69 mkdir -p $fs/etc/init.d
70 # Busybox config files.
71 cp stuff/busybox.conf $fs/etc
72 chmod 600 $fs/etc/busybox.conf
73 cp stuff/dnsd.conf $fs/etc
74 cp stuff/udhcpd.conf $fs/etc
75 touch $fs/etc/resolv.conf
76 cp stuff/inetd.conf $fs/etc
77 cp stuff/daemon $fs/etc/init.d
78 for i in crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd \
79 udhcpd zcip ; do
80 grep -qi config_$i=y $src/.config &&
81 ln -s daemon $fs/etc/init.d/$i
82 done
83 cp stuff/init $fs
84 rm $fs/linuxrc
85 mkdir -p $fs/etc/modprobe.d
86 # Udhcpc stuff.
87 mkdir -p $fs/usr/share/udhcpc
88 cp stuff/udhcp.script $fs/usr/share/udhcpc/default.script
89 chmod +x $fs/usr/share/udhcpc/default.script
90 # ZeroConf stuff.
91 cp stuff/zcip.script $fs/etc
92 # Httpd stuff.
93 cp stuff/httpd_helper.sh $fs/usr/bin
94 chmod +x $fs/usr/bin/httpd_helper.sh
95 # .desktop stuff
96 mkdir -p $fs/usr/share
97 cp -a stuff/applications $fs/usr/share
98 }
100 # Force glibc-2.7 reinstall if 2.3.6 still in use.
101 pre_install()
102 {
103 local i
104 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
105 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
106 tazpkg get-install glibc-base --forced
107 fi
108 answer=""
109 for i in $(cat $1$INSTALLED/$PACKAGE/files.list); do
110 [ -f $1$i ] || continue
111 case "$i" in
112 /bin/busybox) continue ;;
113 *bin/*) ;;
114 *) continue ;;
115 esac
116 if [ -z "$answer" ]; then
117 echo -n "Keep installed GNU utilities ? "
118 read -t 30 answer # by default: keep
119 case "$answer" in
120 n*|N*) break;;
121 *) answer="Y";;
122 esac
123 fi
124 cp -a $1$i $1$i-busybox-install
125 done
126 }
128 post_install()
129 {
130 local i
131 [ -f /etc/resolv.conf-busybox-install ] &&
132 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
133 while read i ; do
134 [ -f $1$i-busybox-install ] || continue
135 mv $1$i-busybox-install $1$i
136 done < $1$INSTALLED/$PACKAGE/files.list
137 chmod 4755 $1/bin/busybox
138 }
140 pre_remove()
141 {
142 # We can not remove this package !
143 exit 1
144 }