ea15eafbc345a0dd0368f6ea44b1fd9f1fb6bfc1
[kai/samba.git] / packaging / Solaris / makepkg.sh
1 #!/bin/sh
2 #
3 # Copyright (C) Shirish A Kalele 2000
4 #
5 # Builds a Samba package from the samba distribution. 
6 # By default, the package will be built to install samba in /usr/local
7 # Change the INSTALL_BASE variable to change this: will modify the pkginfo 
8 # and samba.server files to point to the new INSTALL_BASE
9 #
10 INSTALL_BASE=/usr/local
11
12 add_dynamic_entries() 
13 {
14   # First build the codepages and append codepage entries to prototype
15   echo "#\n# Codepages \n#"
16   echo d none samba/lib/codepages 0755 root other
17
18   CODEPAGELIST="437 737 850 852 861 932 866 949 950 936"
19   # Check if make_smbcodepage exists
20   if [ ! -f $DISTR_BASE/source/bin/make_smbcodepage ]; then
21     echo "Could not find $DISTR_BASE/source/bin/make_smbcodepage to generate codepages.\n\
22      Please create the binaries before packaging." >&2
23     exit 1
24   fi
25
26   for p in $CODEPAGELIST; do
27     $DISTR_BASE/source/bin/make_smbcodepage c $p $DISTR_BASE/source/codepages/codepage_def.$p $DISTR_BASE/source/codepages/codepage.$p
28     echo f none samba/lib/codepages/codepage.$p=source/codepages/codepage.$p 0644 root other
29   done
30
31   # Create unicode maps
32   if [ ! -f $DISTR_BASE/source/bin/make_unicodemap ]; then
33     echo "Missing $DISTR_BASE/source/bin/make_unicodemap. Aborting." >&2
34     exit 1
35   fi
36
37   # Pull in all the unicode map files from source/codepages/CP*.TXT
38   list=`find $DISTR_BASE/source/codepages -name "CP*.TXT" | sed 's|^.*CP\(.*\)\.TXT|\1|'`
39   for umap in $list
40   do
41     $DISTR_BASE/source/bin/make_unicodemap $umap $DISTR_BASE/source/codepages/CP$umap.TXT $DISTR_BASE/source/codepages/unicode_map.$umap
42     echo f none samba/lib/codepages/unicode_map.$umap=source/codepages/unicode_map.$umap 0644 root other
43   done
44
45   # Add the binaries, docs and SWAT files
46
47   echo "#\n# Binaries \n#"
48   cd $DISTR_BASE/source/bin
49   for binfile in *
50   do
51     if [ -f $binfile ]; then
52       echo f none samba/bin/$binfile=source/bin/$binfile 0755 root other
53     fi
54   done
55   echo "#\n# HTML documentation \n#"
56   cd $DISTR_BASE
57   list=`find docs/htmldocs -type d | grep -v "/CVS$"`
58   for docdir in $list
59   do
60     if [ -d $docdir ]; then
61         echo d none samba/$docdir 0755 root other
62     fi
63   done
64
65   list=`find docs/htmldocs -type f | grep -v /CVS/`
66   for htmldoc in $list
67   do
68     if [ -f $htmldoc ]; then
69       echo f none samba/$htmldoc=$htmldoc 0644 root other
70     fi
71   done
72
73   # Create a symbolic link to the Samba book in docs/ for beginners
74   echo 's none samba/docs/samba_book=htmldocs/using_samba'
75
76   echo "#\n# Text Docs \n#"
77   echo d none samba/docs/textdocs 0755 root other
78   cd $DISTR_BASE/docs/textdocs
79   for textdoc in *
80   do 
81     if [ -f $textdoc ]; then
82       echo f none samba/docs/textdocs/$textdoc=docs/textdocs/$textdoc 0644 root other
83     fi
84   done
85   echo "#\n# SWAT \n#"
86   cd $DISTR_BASE
87   list=`find swat -type d | grep -v "/CVS$"`
88   for i in $list
89   do
90     echo "d none samba/$i 0755 root other"
91   done
92   list=`find swat -type f | grep -v /CVS/`
93   for i in $list
94   do
95     echo "f none samba/$i=$i 0644 root other"
96   done
97   echo "#\n# HTML documentation for SWAT\n#"
98   cd $DISTR_BASE/docs/htmldocs
99   for htmldoc in *
100   do
101     if [ -f $htmldoc ]; then
102       echo f none samba/swat/help/$htmldoc=docs/htmldocs/$htmldoc 0644 root other
103     fi
104   done
105
106   echo "#\n# Using Samba Book files for SWAT\n#"
107   cd $DISTR_BASE/docs/htmldocs
108
109 # set up a symbolic link instead of duplicating the book tree
110   echo 's none samba/swat/using_samba=../docs/htmldocs/using_samba'
111
112 }
113
114 if [ $# = 0 ]
115 then
116         # Try to guess the distribution base..
117         CURR_DIR=`pwd`
118         DISTR_BASE=`echo $CURR_DIR | sed 's|\(.*\)/packaging.*|\1|'`
119         echo "Assuming Samba distribution is rooted at $DISTR_BASE.."
120 else
121         DISTR_BASE=$1
122 fi
123
124 #
125 if [ ! -d $DISTR_BASE ]; then
126         echo "Source build directory $DISTR_BASE does not exist."
127         exit 1
128 fi
129
130 # Set up the prototype file from prototype.master
131 if [ -f prototype ]; then
132         rm prototype
133 fi
134
135 # Setup version from version.h
136 VERSION=`sed 's/#define VERSION \"\(.*\)\"$/\1/' ../../source/include/version.h`
137 sed -e "s|__VERSION__|$VERSION|" -e "s|__ARCH__|`uname -p`|" -e "s|__BASEDIR__|$INSTALL_BASE|g" pkginfo.master >pkginfo
138
139 sed -e "s|__BASEDIR__|$INSTALL_BASE|g" inetd.conf.master >inetd.conf
140 sed -e "s|__BASEDIR__|$INSTALL_BASE|g" samba.server.master >samba.server
141
142 cp prototype.master prototype
143
144 # Add the dynamic part to the prototype file
145 (add_dynamic_entries >> prototype)
146
147 # Create the package
148 pkgmk -o -d /tmp -b $DISTR_BASE -f prototype
149 if [ $? = 0 ]
150 then
151         pkgtrans /tmp samba.pkg samba
152 fi
153 echo The samba package is in /tmp
154 rm -f prototype