wok view busybox-pam/receipt @ rev 5748

busybox: ensure mod is 4755
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 02 12:30:41 2010 +0200 (2010-07-02)
parents 52dc580d9edb
children 4420ba71beb4
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-pam"
4 VERSION="1.16.1"
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 pam"
9 BUILD_DEPENDS="bzip2 pam pam-dev"
10 SOURCE="busybox"
11 TARBALL="$SOURCE-$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"
15 PROVIDE="busybox:pam"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 while read file; do
22 [ -f done.$file ] && continue
23 echo "Apply $file..."
24 patch -p1 < $WOK/$SOURCE/stuff/$SOURCE-$VERSION-$file || return 1
25 touch done.$file
26 done <<EOT
27 vcsa2txt.u
28 ftpd.u
29 cpio-mkdir.u
30 tar.u
31 stat.u
32 ris.u
33 dpkg_deb.u
34 syslogd.u
35 modinfo.u
36 zmodules.u
37 modprobe.u
38 EOT
39 cp $WOK/$SOURCE/stuff/$SOURCE-$VERSION.config .config
40 sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
41 make oldconfig
42 # "CFLAGS=-O0" is a workaround for GCC 4.5.0
43 make -j 4 "CFLAGS=-O0" && make "CFLAGS=-O0" install
44 echo "Chmod 4755 on busybox binary..."
45 chmod 4755 _install/bin/busybox
46 }
48 # Rules to gen a SliTaz package suitable for Tazpkg.
49 genpkg_rules()
50 {
51 cp -a $src/_install/* $fs
52 chmod 4755 $fs/bin/busybox
53 rm -f $fs/sbin/depmod $fs/usr/bin/ar
54 cp -a stuff/etc $fs
55 mkdir -p $fs/etc/init.d
56 # Busybox config files.
57 # genpkg busybox-pam depends on busybox config files
58 # Note: no space/tab before WANTED
59 WANTED="busybox"
60 cd $WOK/$SOURCE
61 fs=$WOK/$PACKAGE/taz/$PACKAGE-$VERSION/fs
62 cp stuff/busybox.conf $fs/etc
63 chmod 600 $fs/etc/busybox.conf
64 cp stuff/dnsd.conf $fs/etc
65 cp stuff/udhcpd.conf $fs/etc
66 touch $fs/etc/resolv.conf
67 cp stuff/inetd.conf $fs/etc
68 cp stuff/daemon $fs/etc/init.d
69 for i in crond dnsd ftpd httpd inetd klogd ntpd syslogd telnetd tftpd \
70 udhcpd zcip ; do
71 grep -qi config_$i=y $src/.config &&
72 ln -s daemon $fs/etc/init.d/$i
73 done
74 cp stuff/init $fs
75 rm $fs/linuxrc
76 mkdir -p $fs/etc/modprobe.d
77 # Udhcpc stuff.
78 mkdir -p $fs/usr/share/udhcpc
79 cp stuff/udhcp.script $fs/usr/share/udhcpc/default.script
80 chmod +x $fs/usr/share/udhcpc/default.script
81 # ZeroConf stuff.
82 cp stuff/zcip.script $fs/etc
83 # Httpd stuff.
84 cp stuff/httpd_helper.sh $fs/usr/bin
85 chmod +x $fs/usr/bin/httpd_helper.sh
86 # .desktop stuff
87 mkdir -p $fs/usr/share
88 cp -a stuff/applications $fs/usr/share
89 }
91 # Force glibc-2.7 reinstall if 2.3.6 still in use.
92 pre_install()
93 {
94 local i
95 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
96 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
97 tazpkg get-install glibc-base --forced
98 fi
99 answer=""
100 while read i ; do
101 [ -e $ROOT$i ] || continue
102 if [ -z "$answer" ]; then
103 echo -n "Keep installed GNU utilities ? "
104 read answer
105 case "$answer" in
106 y*|Y*|o*|O*);;
107 *) break;;
108 esac
109 fi
110 mv $ROOT$i $ROOT$i-busybox-install
111 done < $1$INSTALLED/$PACKAGE/files.list
112 }
114 post_install()
115 {
116 local i
117 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
118 while read i ; do
119 [ -e $ROOT$i-busybox-install ] || continue
120 mv $ROOT$i-busybox-install $ROOT$i
121 done < $1$INSTALLED/$PACKAGE/files.list
122 }