Changed hard links to soft links
[OSXPackageBuilder.git] / build.sh
1 #!/bin/sh
2
3 # File        :  build.sh
4 #
5 # Purpose     :  Build the privoxy binary, documentation and config files
6 #                for the chosen target environment
7 #
8 # Copyright   :  Written by and Copyright (C) 2001-2012 the
9 #                Privoxy team. http://www.privoxy.org/
10 #
11 #                This program is free software; you can redistribute it
12 #                and/or modify it under the terms of the GNU General
13 #                Public License as published by the Free Software
14 #                Foundation; either version 2 of the License, or (at
15 #                your option) any later version.
16 #
17 #                This program is distributed in the hope that it will
18 #                be useful, but WITHOUT ANY WARRANTY; without even the
19 #                implied warranty of MERCHANTABILITY or FITNESS FOR A
20 #                PARTICULAR PURPOSE.  See the GNU General Public
21 #                License for more details.
22 #
23 #                The GNU General Public License should be included with
24 #                this file.  If not, you can view it at
25 #                http://www.gnu.org/copyleft/gpl.html
26 #                or write to the Free Software Foundation, Inc.,
27 #                51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
28 #                USA
29 #
30 # Modification : If you modify this file please consider whether your 
31 #                changes ought to be passed back to the macsetup module.
32 #
33
34 #
35 # must provide target
36 #
37 if [ $# -eq 0 -o $# -gt 1 ]; then
38   echo "Usage: $0 lion | snowleopard64 | snowleopard | leopardupwards | leopard | tiger | panther"
39   exit 1
40 fi
41
42 #
43 # load common settings
44 #
45 . ./common.sh $1
46
47 #
48 # must have Xcode
49 #
50 if [ -z ${XCODE_PATH} ]; then
51   echo "Error: this release of Mac OS X not supported."
52   exit 1
53 fi
54
55 #
56 # use default options
57 #
58 OPTS=${OPTS}
59
60 #
61 # check if privoxy group and user exist?
62 #
63 if [ -z ${GNAME} -o -z ${UNAME} ]; then
64   echo ""
65   echo "Error: a privoxy group and user do not exist."
66   echo "A privoxy group and user must be created before continuing."
67   echo "Review the README file for instructions on creating a privoxy group and user."
68   exit 1
69 else
70   echo ""
71   echo "Notice: an existing privoxy group and user was found."
72 fi
73
74 #
75 # configure privoxy
76 #
77 echo ""
78 echo "Notice: configuring the privoxy software."
79 cd ../${SOURCE_DIR}
80 /usr/bin/autoheader
81 /usr/bin/autoconf
82 /usr/bin/env CFLAGS="${CFLAGS} -I/usr/local/include/ ${SYSROOT} ${ARCH} ${MACOSX_VERSION}" LDFLAGS="${LDFLAGS} -L/usr/local/lib ${SYSROOT} ${ARCH} ${MACOSX_VERSION}" ./configure ${OPTS}
83
84 #
85 # clean, then make privoxy
86 #
87 echo ""
88 echo "Notice: building the privoxy software."
89 /usr/bin/make clean
90 /usr/bin/make
91
92 #
93 # modify config file
94 #
95 /usr/bin/awk '{sub(/logfile.*logfile$/,"logfile logfile.log"); print}' ../${SOURCE_DIR}/config > ../${SOURCE_DIR}/config.tmp
96 /bin/mv ../${SOURCE_DIR}/config.tmp ../${SOURCE_DIR}/config
97