r12040: merging packaging fixes from release branch
[ira/wip.git] / packaging / Solaris / makepkg.sh
1 #!/bin/sh
2 #
3 # Copyright (C) Shirish A Kalele 2000
4 # Copyright (C) Gerald Carter    2004
5 #
6 # script for build solaris Samba package
7 #
8
9 INSTALL_BASE=/opt/samba
10
11 SBINPROGS="smbd nmbd winbindd swat"
12 BINPROGS="findsmb nmblookup eventlogadm pdbedit rpcclient smbclient smbcquotas smbspool smbtar tdbbackup testparm wbinfo net ntlm_auth profiles smbcacls smbcontrol smbpasswd smbstatus smbtree tdbdump"
13 MSGFILES="de.msg en.msg fr.msg it.msg ja.msg nl.msg pl.msg tr.msg"
14 VFSLIBS="audit.so default_quota.so extd_audit.so full_audit.so readonly.so shadow_copy.so cap.so expand_msdfs.so fake_perms.so netatalk.so recycle.so"
15 DATFILES="lowcase.dat upcase.dat valid.dat"
16 CHARSETLIBS="CP437.so CP850.so"
17 AUTHLIBS="script.so"
18
19 add_dynamic_entries() 
20 {
21         # Add the binaries, docs and SWAT files
22         cd $TMPINSTALLDIR/$INSTALL_BASE
23
24         echo "#\n# Server Binaries \n#" 
25         for file in $SBINPROGS; do
26                 echo f none sbin/$file 0755 root other
27         done
28
29         echo "#\n# User Binaries \n#"
30         for file in $BINPROGS; do
31                 echo f none bin/$file 0755 root other
32         done
33         
34         echo "#\n# Libraries\n#"
35         for file in $MSGFILES; do
36                 echo f none lib/$file 0644 root other
37         done
38         for file in $DATFILES; do
39                 echo f none lib/$file 0644 root other
40         done
41         for file in $VFSLIBS; do
42                 echo f none lib/vfs/$file 0755 root other
43         done
44         for file in $CHARSETLIBS; do
45                 echo f none lib/charset/$file 0755 root other
46         done
47         for file in $AUTHLIBS; do
48                 echo f none lib/auth/$file 0755 root other
49         done
50         
51         echo "#\n# libsmbclient\n#"
52         echo f none lib/libsmbclient.so 0755 root other
53         echo f none lib/libsmbclient.a 0755 root other
54         echo f none include/libsmbclient.h 0644 root other
55
56         echo "#\n# libmsrpc\n#"
57         echo f none lib/libmsrpc.so 0755 root other
58         echo f none lib/libmsrpc.a 0755 root other
59         echo f none include/libmsrpc.h 0644 root other
60
61         if [ -f lib/smbwrapper.so -a -f bin/smbsh ]; then
62                 echo "#\n# smbwrapper\n#"
63                 echo f none lib/smbwrapper.so 0755 root other
64                 echo f none bin/smbsh 0755 root other
65         fi
66
67         echo "#\n# nss_winbind.so and nss_wins.so\n#"
68         echo f none /lib/nss_winbind.so.1=lib/nss_winbind.so.1 0755 root other
69         echo f none /lib/nss_wins.so.1=lib/nss_wins.so.1 0755 root other
70         # echo s none /lib/nss_winbind.so.1=/usr/lib/nss_winbind.so.1 0755 root other
71         # echo s none /lib/nss_wins.so.1=/usr/lib/nss_wins.so.1 0755 root other
72         if [ -f lib/pam_winbind.so ]; then
73                 echo f none /usr/lib/security/pam_winbind.so=lib/pam_winbind.so 0755 root other
74         fi
75
76         echo "#\n# man pages \n#"
77
78         # Create directories for man page sections if nonexistent
79         cd man
80         for i in 1 2 3 4 5 6 7 8 9; do
81                 manpages=`ls man$i 2>/dev/null`
82                 if [ $? -eq 0 ]; then
83                         echo d none man/man${i} ? ? ?
84                         for manpage in $manpages; do
85                                 echo f none man/man${i}/${manpage} 0644 root other
86                         done
87                 fi
88         done
89         cd ..
90
91         echo "#\n# SWAT \n#"
92         list=`find swat -type d | grep -v "/.svn$"`
93         for dir in $list; do
94                 if [ -d $dir ]; then
95                         echo d none $dir 0755 root other
96                 fi
97         done
98
99         list=`find swat -type f | grep -v /.svn/`
100         for file in $list; do
101                 if [ -f $file ]; then
102                         echo f none $file 0644 root other
103                 fi
104         done
105
106         # Create entries for docs for the beginner
107         echo 's none docs/using_samba=$BASEDIR/swat/using_samba'
108         for file in docs/*pdf; do
109                 echo f none $file 0644 root other
110         done
111 }
112
113 #####################################################################
114 ## BEGIN MAIN 
115 #####################################################################
116
117 # Try to guess the distribution base..
118 DISTR_BASE=`dirname \`pwd\` |sed -e 's@/packaging$@@'`
119 echo "Distribution base:  $DISTR_BASE"
120
121 TMPINSTALLDIR="/tmp/`basename $DISTR_BASE`-build"
122 echo "Temp install dir:   $TMPINSTALLDIR"
123 echo "Install directory:  $INSTALL_BASE"
124
125 ##
126 ## first build the source
127 ##
128
129 cd $DISTR_BASE/source
130
131 if [ "x$1" != "xnobuild" ]; then
132         ./configure --prefix=$INSTALL_BASE \
133                 --with-acl-support \
134                 --with-included-popt \
135                 --localstatedir=/var/lib/samba \
136                 --with-piddir=/var/run \
137                 --with-logfilebase=/var/log/samba \
138                 --with-privatedir=/etc/samba/private \
139                 --with-configdir=/etc/samba \
140         && make
141
142         if [ $? -ne 0 ]; then
143                 echo "Build failed!  Exiting...."
144                 exit 1
145         fi
146 fi
147         
148 mkdir $TMPINSTALLDIR
149 make DESTDIR=$TMPINSTALLDIR install
150
151 ## clear out *.old
152 find $TMPINSTALLDIR -name \*.old |while read x; do rm -rf "$x"; done
153  
154 ##
155 ## Now get the install locations
156 ##
157 SBINDIR=`bin/smbd -b | grep SBINDIR | awk '{print $2}'`
158 BINDIR=`bin/smbd -b | grep BINDIR | grep -v SBINDIR |  awk '{print $2}'`
159 SWATDIR=`bin/smbd -b | grep SWATDIR | awk '{print $2}'`
160 CONFIGFILE=`bin/smbd -b | grep CONFIGFILE | awk '{print $2}'`
161 LOCKDIR=`bin/smbd -b | grep LOCKDIR | awk '{print $2}'`
162 CONFIGDIR=`dirname $CONFIGFILE`
163 LOGFILEBASE=`bin/smbd -b | grep LOGFILEBASE | awk '{print $2}'`
164 LIBDIR=`bin/smbd -b | grep LIBDIR | awk '{print $2}'`
165 PIDDIR=`bin/smbd -b | grep PIDDIR | awk '{print $2}'`
166 PRIVATE_DIR=`bin/smbd -b | grep PRIVATE_DIR | awk '{print $2}'`
167 DOCDIR=$INSTALL_BASE/docs
168
169 ## 
170 ## copy some misc files that are not done as part of 'make install'
171 ##
172 cp -fp nsswitch/libnss_wins.so $TMPINSTALLDIR/$LIBDIR/nss_wins.so.1
173 cp -fp nsswitch/libnss_winbind.so $TMPINSTALLDIR/$LIBDIR/nss_winbind.so.1
174 if [ -f nsswitch/pam_winbind.so ]; then
175         cp -fp nsswitch/pam_winbind.so $TMPINSTALLDIR/$LIBDIR/pam_winbind.so
176 fi
177 if [ -f bin/smbwrapper.so ]; then
178         cp -fp bin/smbwrapper.so $TMPINSTALLDIR/$INSTALL_BASE/lib
179 fi
180 if [ -f bin/smbsh ]; then
181         cp -fp bin/smbsh $TMPINSTALLDIR/$INSTALL_BASE/bin
182 fi
183
184 mkdir -p $TMPINSTALLDIR/$INSTALL_BASE/docs
185 cp -p ../docs/*pdf $TMPINSTALLDIR/$INSTALL_BASE/docs
186
187
188 cd $DISTR_BASE/packaging/Solaris
189
190 ##
191 ## Main driver 
192 ##
193
194 # Setup version from smbd -V
195
196 VERSION=`$TMPINSTALLDIR/$SBINDIR/smbd -V | awk '{print $2}'`
197 sed -e "s|__VERSION__|$VERSION|" -e "s|__ARCH__|`uname -p`|" -e "s|__BASEDIR__|$INSTALL_BASE|g" pkginfo.master > pkginfo
198
199 sed -e "s|__BASEDIR__|$INSTALL_BASE|g" inetd.conf.master   > inetd.conf
200 sed -e "s|__BASEDIR__|$INSTALL_BASE|g" samba.init.master > samba.init
201
202 ##
203 ## copy over some scripts need for packagaing
204 ##
205 mkdir -p $TMPINSTALLDIR/$INSTALL_BASE/scripts
206 for i in inetd.conf samba.init smb.conf.default services; do
207         cp -fp $i $TMPINSTALLDIR/$INSTALL_BASE/scripts
208 done
209
210 ##
211 ## Start building the prototype file
212 ##
213 echo "CONFIGDIR=$CONFIGDIR" >> pkginfo
214 echo "LOGFILEBASE=$LOGFILEBASE" >> pkginfo
215 echo "LOCKDIR=$LOCKDIR" >> pkginfo
216 echo "PIDDIR=$PIDDIR" >> pkginfo
217 echo "PRIVATE_DIR=$PRIVATE_DIR" >> pkginfo
218
219 cp prototype.master prototype
220
221 # Add the dynamic part to the prototype file
222 (add_dynamic_entries >> prototype)
223
224 ##
225 ## copy packaging files 
226 ##
227 for i in prototype pkginfo copyright preremove postinstall request i.swat r.swat; do
228         cp $i $TMPINSTALLDIR/$INSTALL_BASE
229 done
230
231 # Create the package
232 pkgmk -o -d /tmp -b $TMPINSTALLDIR/$INSTALL_BASE -f prototype
233
234 if [ $? = 0 ]; then
235         pkgtrans /tmp samba.pkg samba
236 fi
237
238 echo The samba package is in /tmp