wok-current annotate busybox/receipt @ rev 10818
busybox: add HTTPD_OPTIONS and start httpd as www user (+ add files forgot in previews commit)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Jun 06 00:44:11 2011 +0200 (2011-06-06) |
parents | 481d1e820d85 |
children | 46c3a889a648 |
rev | line source |
---|---|
pankso@0 | 1 # SliTaz package receipt. |
pankso@0 | 2 |
pankso@0 | 3 PACKAGE="busybox" |
pascal@9248 | 4 VERSION="1.18.4" |
pankso@0 | 5 CATEGORY="base-system" |
pankso@0 | 6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." |
pankso@289 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@7795 | 8 DEPENDS="slitaz-base-files glibc-base ncurses-common" |
pascal@8236 | 9 BUILD_DEPENDS="bzip2 pam pam-dev uclibc-cross-compiler-i486" |
pankso@0 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@0 | 11 WEB_SITE="http://www.busybox.net/" |
pankso@0 | 12 WGET_URL="http://www.busybox.net/downloads/$TARBALL" |
pascal@1196 | 13 CONFIG_FILES="/etc/dnsd.conf /etc/inetd.conf /etc/udhcpd.conf /etc/resolv.conf" |
pankso@0 | 14 |
pascal@8237 | 15 apply_bb_patchs() |
slaxemulator@8159 | 16 { |
slaxemulator@8159 | 17 cd $src |
slaxemulator@8159 | 18 while read file; do |
slaxemulator@8159 | 19 [ -f done.$file ] && continue |
slaxemulator@8159 | 20 echo "Apply $file..." |
slaxemulator@9279 | 21 patch -p1 < $stuff/$PACKAGE-${VERSION%.*}-$file || return 1 |
slaxemulator@8159 | 22 touch done.$file |
slaxemulator@8159 | 23 done <<EOT |
slaxemulator@8159 | 24 tar.u |
slaxemulator@8159 | 25 stat.u |
slaxemulator@8159 | 26 ris.u |
slaxemulator@8159 | 27 zmodules.u |
slaxemulator@8159 | 28 printable.u |
slaxemulator@8159 | 29 cmdline.u |
pascal@9195 | 30 conspy.u |
slaxemulator@8159 | 31 EOT |
slaxemulator@9279 | 32 cp $stuff/$PACKAGE-${VERSION%.*}.config .config |
pascal@8237 | 33 } |
pascal@8237 | 34 |
pascal@8237 | 35 # Rules to compile & install the temporary toolchain. |
pascal@8237 | 36 cook_tmp_toolchain() |
pascal@8237 | 37 { |
pascal@9664 | 38 { stuff=${stuff:-../stuff} |
pascal@9658 | 39 apply_bb_patchs && |
pascal@8238 | 40 make oldconfig && |
pascal@8238 | 41 make && |
slaxemulator@8159 | 42 make CONFIG_PREFIX=/tools install |
slaxemulator@8159 | 43 } || return 1 |
slaxemulator@8159 | 44 echo "Chmod 4755 on busybox binary..." |
slaxemulator@8159 | 45 chmod 4755 /tools/bin/busybox |
slaxemulator@8159 | 46 } |
slaxemulator@8159 | 47 |
pankso@0 | 48 # Rules to configure and make the package. |
pankso@0 | 49 compile_rules() |
pankso@0 | 50 { |
pascal@8238 | 51 { apply_bb_patchs && |
pascal@8238 | 52 make oldconfig && |
pascal@8238 | 53 make && |
pascal@8238 | 54 make install |
pascal@8238 | 55 } || return 1 |
pascal@7274 | 56 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config |
slaxemulator@8239 | 57 make oldconfig && make || return 1 |
pascal@7274 | 58 mv busybox busybox-pam |
slaxemulator@9279 | 59 cp $stuff/$PACKAGE-${VERSION%.*}.config-static .config |
slaxemulator@8239 | 60 make oldconfig && make || return 1 |
pascal@7276 | 61 mv busybox busybox-static |
pankso@0 | 62 } |
pankso@0 | 63 |
pankso@0 | 64 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@0 | 65 genpkg_rules() |
pankso@0 | 66 { |
pankso@0 | 67 cp -a $src/_install/* $fs |
pascal@7755 | 68 rm -f $fs/bin/bbconfig $fs/usr/bin/ar |
pankso@10817 | 69 mkdir -p $fs/etc/init.d $fs/var |
pankso@10817 | 70 |
pascal@514 | 71 # Busybox config files. |
pankso@10817 | 72 for f in busybox.conf dnsd.conf udhcpd.conf inetd.conf httpd.conf zcip.script |
pankso@10817 | 73 do |
pankso@10817 | 74 cp $stuff/$f $fs/etc |
pankso@10817 | 75 done |
pankso@10817 | 76 chown -R 0.0 $fs/etc |
pankso@0 | 77 chmod 600 $fs/etc/busybox.conf |
pascal@847 | 78 touch $fs/etc/resolv.conf |
pankso@10817 | 79 |
pankso@10817 | 80 # Daemon scripts and init. |
slaxemulator@9279 | 81 cp $stuff/daemon $fs/etc/init.d |
slaxemulator@9279 | 82 DAEMON="crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd udhcpd zcip" |
slaxemulator@9279 | 83 for i in $DAEMON; do |
pankso@10817 | 84 grep -qi config_$i=y $stuff/$PACKAGE-${VERSION%.*}.config && |
pankso@10817 | 85 ln -s daemon $fs/etc/init.d/$i |
pascal@5308 | 86 done |
slaxemulator@9279 | 87 cp $stuff/init $fs |
pascal@1703 | 88 rm $fs/linuxrc |
pascal@1299 | 89 mkdir -p $fs/etc/modprobe.d |
pankso@10817 | 90 |
pankso@0 | 91 # Udhcpc stuff. |
pankso@0 | 92 mkdir -p $fs/usr/share/udhcpc |
slaxemulator@9279 | 93 cp $stuff/udhcp.script $fs/usr/share/udhcpc/default.script |
pankso@0 | 94 chmod +x $fs/usr/share/udhcpc/default.script |
pankso@10817 | 95 |
pascal@5684 | 96 # Httpd stuff. |
slaxemulator@9279 | 97 cp $stuff/httpd_helper.sh $fs/usr/bin |
pascal@5684 | 98 chmod +x $fs/usr/bin/httpd_helper.sh |
pankso@10817 | 99 cp -a $stuff/www $fs/var |
pankso@0 | 100 } |
pankso@557 | 101 |
pankso@557 | 102 # Force glibc-2.7 reinstall if 2.3.6 still in use. |
pankso@557 | 103 pre_install() |
pankso@557 | 104 { |
pascal@5015 | 105 local i |
pascal@983 | 106 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install |
pascal@567 | 107 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then |
pankso@557 | 108 tazpkg get-install glibc-base --forced |
pankso@557 | 109 fi |
pascal@5015 | 110 answer="" |
pascal@5924 | 111 for i in $(cat $1$INSTALLED/$PACKAGE/files.list); do |
pascal@5863 | 112 [ -f $1$i ] || continue |
pascal@5874 | 113 case "$i" in |
pascal@5874 | 114 /bin/busybox) continue ;; |
pascal@5874 | 115 *bin/*) ;; |
pascal@5874 | 116 *) continue ;; |
pascal@5874 | 117 esac |
pascal@5015 | 118 if [ -z "$answer" ]; then |
pascal@5015 | 119 echo -n "Keep installed GNU utilities ? " |
pascal@5711 | 120 read -t 30 answer # by default: keep |
pascal@5015 | 121 case "$answer" in |
pascal@5711 | 122 n*|N*) break;; |
pascal@5975 | 123 *) answer="Y";; |
pascal@5015 | 124 esac |
pascal@5015 | 125 fi |
pascal@5863 | 126 cp -a $1$i $1$i-busybox-install |
pascal@5924 | 127 done |
pankso@557 | 128 } |
pascal@983 | 129 |
pascal@983 | 130 post_install() |
pascal@983 | 131 { |
pascal@5015 | 132 local i |
pascal@5924 | 133 [ -f /etc/resolv.conf-busybox-install ] && |
pascal@983 | 134 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf |
pascal@5015 | 135 while read i ; do |
pascal@5863 | 136 [ -f $1$i-busybox-install ] || continue |
pascal@5749 | 137 mv $1$i-busybox-install $1$i |
pascal@5015 | 138 done < $1$INSTALLED/$PACKAGE/files.list |
pascal@5749 | 139 chmod 4755 $1/bin/busybox |
pankso@10818 | 140 |
pankso@10818 | 141 # /etc/daemons.conf (tftp + dnsd + httpd may not be present) |
pankso@10818 | 142 if ! grep -q ^DNSD_OPTIONS $root/etc/daemons.conf; then |
pankso@10818 | 143 echo '# Domain name server options.' >> $root/etc/daemons.conf |
pankso@10818 | 144 echo 'DNSD_OPTIONS="-d"' >> $root/etc/daemons.conf |
pankso@10818 | 145 echo '' >> $root/etc/daemons.conf |
pankso@10818 | 146 fi |
pankso@10818 | 147 if ! grep -q ^TFTPD_OPTIONS $root/etc/daemons.conf; then |
pankso@10818 | 148 echo '# Tftp daemon options.' >> $root/etc/daemons.conf |
pankso@10818 | 149 echo 'TFTPD_OPTIONS="-r /boot"' >> $root/etc/daemons.conf |
pankso@10818 | 150 echo '' >> $root/etc/daemons.conf |
pankso@10818 | 151 fi |
pankso@10818 | 152 if ! grep -q ^HTTPD_OPTIONS $root/etc/daemons.conf; then |
pankso@10818 | 153 echo '# Busybox HTTP web server options.' >> $root/etc/daemons.conf |
pankso@10818 | 154 echo 'HTTPD_OPTIONS="-u www"' >> $root/etc/daemons.conf |
pankso@10818 | 155 echo '' >> $root/etc/daemons.conf |
pankso@10818 | 156 fi |
pascal@5686 | 157 } |
pascal@8932 | 158 |
pascal@8932 | 159 pre_remove() |
pascal@8932 | 160 { |
pascal@8932 | 161 # We can not remove this package ! |
pascal@8932 | 162 exit 1 |
pascal@8932 | 163 } |