wok view busybox/receipt @ rev 9079

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