wok view busybox/receipt @ rev 10082

Up: qt4 to 4.7.3. This adds sercurity fixes in this release. Add libQtPlugins so you don't need to install Qt4-dev to run mixxx.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 06:22:56 2011 +0000 (2011-05-20)
parents 5fbf13b1df6d
children 481d1e820d85
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 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 tar.u
25 stat.u
26 ris.u
27 zmodules.u
28 printable.u
29 cmdline.u
30 conspy.u
31 EOT
32 cp $stuff/$PACKAGE-${VERSION%.*}.config .config
33 }
35 # Rules to compile & install the temporary toolchain.
36 cook_tmp_toolchain()
37 {
38 { stuff=${stuff:-../stuff}
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 DAEMON="crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd udhcpd zcip"
79 for i in $DAEMON; do
80 grep -qi config_$i=y $stuff/$PACKAGE-${VERSION%.*}.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 }
97 # Force glibc-2.7 reinstall if 2.3.6 still in use.
98 pre_install()
99 {
100 local i
101 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
102 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
103 tazpkg get-install glibc-base --forced
104 fi
105 answer=""
106 for i in $(cat $1$INSTALLED/$PACKAGE/files.list); do
107 [ -f $1$i ] || continue
108 case "$i" in
109 /bin/busybox) continue ;;
110 *bin/*) ;;
111 *) continue ;;
112 esac
113 if [ -z "$answer" ]; then
114 echo -n "Keep installed GNU utilities ? "
115 read -t 30 answer # by default: keep
116 case "$answer" in
117 n*|N*) break;;
118 *) answer="Y";;
119 esac
120 fi
121 cp -a $1$i $1$i-busybox-install
122 done
123 }
125 post_install()
126 {
127 local i
128 [ -f /etc/resolv.conf-busybox-install ] &&
129 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
130 while read i ; do
131 [ -f $1$i-busybox-install ] || continue
132 mv $1$i-busybox-install $1$i
133 done < $1$INSTALLED/$PACKAGE/files.list
134 chmod 4755 $1/bin/busybox
135 }
137 pre_remove()
138 {
139 # We can not remove this package !
140 exit 1
141 }