]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
Update to latest libyaz; install z39.50 server library out of the box
[Evergreen.git] / Open-ILS / src / extras / Makefile.install
1 # ---------------------------------------------------------------------
2 # Author: Bill Erickson <erickson@esilibrary.com>
3 #
4 # Makefile to install prerequisites for OpenSRF and Evergreen
5 #
6 # Currently supports Debian (etch/lenny), Ubuntu (gutsy/hardy/intrepid), and Gentoo.
7 # Working towards support of CentOS 5 / RHEL 5.
8 # Installs Perl prereqs, libjs with Perl wrapper, libdbi, libdbi-drivers, and libyaz
9 #
10 # usage:
11 #       make -f Makefile.install debian-etch
12 #       - or -
13 #       make -f Makefile.install debian-lenny
14 #       - or -
15 #       make -f Makefile.install ubuntu-gutsy
16 #       - or -
17 #       make -f Makefile.install ubuntu-hardy
18 #       - or -
19 #       make -f Makefile.install ubuntu-intrepid
20 #       - or -
21 #       make -f Makefile.install centos
22 #       - or -
23 #       make -f Makefile.install rhel
24 #       - or -
25 #       make -f Makefile.install gentoo
26 #
27 # Notes:
28 #
29 #       This makefile has been tested much more with Debian and Ubuntu than
30 #       CentOS, Gentoo, or RHEL.
31 #
32 #       Gentoo (especially amd64) requires a good bit of masked package
33 #       mangling for some packages.  These are not documented here because
34 #       they will continue to evolve
35 #
36 # ---------------------------------------------------------------------
37  
38 # Make any assumptions about the shell being used explicit
39 SHELL=/bin/bash 
40
41 # XXX
42 # Gentoo needs explicit versions on many of these packages
43 # to simulate a "blessed" set of packages
44 #
45 # Also, I (think) Gentoo has a javascript::spidermonkey package that does
46 # not require fetching the sources externally ... needs testing/updating in here
47 #
48 # Intrepid has libmozjs-dev and spidermonkey-bin - might work
49
50 LIBJS=js-1.7.0
51 LIBJS_PERL=JavaScript-SpiderMonkey-0.19
52 LIBJS_URL=ftp://ftp.mozilla.org/pub/mozilla.org/js/$(LIBJS).tar.gz
53 LIBJS_PERL_URL=ftp://mirror.datapipe.net/pub/CPAN/authors/id/T/TB/TBUSCH/$(LIBJS_PERL).tar.gz
54 # used for installing libjs lib and header files
55 JS_INSTALL_PREFIX=/usr/
56
57
58 # The libdbi sources can be fetched from sourceforge.net.  They are stored on
59 # the open-ils.org site now for ease of direct linking
60 LIBDBI=libdbi-0.8.3
61 LIBDBI_DRIVERS=libdbi-drivers-0.8.3
62 LIBDBI_HOST=http://open-ils.org/~denials/evergreen
63
64 # We need a recent version of Yaz
65 # Debian Lenny and Ubuntu 8.10 come with 3.0.34
66 YAZ=yaz-3.0.47
67 YAZ_HOST=http://ftp.indexdata.dk/pub/yaz
68
69 # Business::OnlinePayment is not packaged on CentOS/RHEL
70 PAY_ONLINE=Business-OnlinePayment-3.00_08.tar.gz
71 PAY_ONLINE_HOST=http://ftp.perl.org/pub/CPAN/authors/id/I/IV/IVAN/
72
73 APT_TOOL=aptitude
74
75 # Debian dependencies
76 DEBS =  \
77         aspell\
78         aspell-en\
79         libbusiness-creditcard-perl\
80         libbusiness-onlinepayment-authorizenet-perl\
81         libbusiness-onlinepayment-perl\
82         libclass-dbi-pg-perl\
83         libdatetime-format-builder-perl\
84         libdatetime-format-mail-perl\
85         libdatetime-perl\
86         libdatetime-timezone-perl\
87         libemail-send-perl\
88         libgd-graph3d-perl\
89         libmarc-record-perl\
90         libole-storage-lite-perl\
91         libpq-dev\
92         libspreadsheet-writeexcel-perl\
93         libtext-aspell-perl\
94         libtext-csv-perl\
95         libtext-csv-perl\
96         libuuid-perl
97
98 # Debian Lenny and Ubuntu Intrepid bundle recent versions of yaz
99 EXTRA_DEBS = \
100         libmarc-charset-perl \
101         libmarc-xml-perl \
102         libnet-z3950-zoom-perl \
103         libyaz-dev \
104         yaz
105
106 CENTOS = \
107         aspell \
108         aspell-devel \
109         aspell-en \
110         gd-devel \
111         perl-DBD-Pg
112
113 PGSQL_CENTOS = \
114         postgresql \
115         postgresql-contrib \
116         postgresql-devel \
117         postgresql-pl \
118         postgresql-server
119
120 # Avoids a weak reference error that otherwise sinks DateTime:Format:ISO8601
121 CENTOS_PERL_FORCE = \
122         Scalar::Util
123
124 # Some of these packages have stupid bugs in their test suites
125 # that are simply too painful to workaround
126 CENTOS_PERL_NOTEST = \
127         Business::OnlinePayment::AuthorizeNet \
128         DateTime::Format::Strptime
129
130 # This is a developer's version, but B:OP:AuthorizeNet depends on it
131 CENTOS_PERL_VERSION = \
132         IVAN/Business-OnlinePayment-3.00_08.tar.gz
133
134 CENTOS_PERL = \
135         Business::CreditCard \
136         Class::DBI::Pg \
137         DateTime \
138         DateTime::TimeZone \
139         DateTime::Format::Builder \
140         GD::Graph3d \
141         MARC::Record \
142         Net::Z3950::ZOOM \
143         Spreadsheet::WriteExcel \
144         Text::Aspell \
145         Text::CSV
146
147 PGSQL_CLIENT_DEBS_8.1 = \
148         postgresql-client-8.1
149
150 PGSQL_SERVER_DEBS_8.1 = \
151         postgresql-8.1 \
152         postgresql-contrib-8.1 \
153         postgresql-plperl-8.1 \
154         postgresql-server-dev-8.1
155
156 PGSQL_CLIENT_DEBS_82 = \
157         postgresql-client
158
159 PGSQL_SERVER_DEBS_82 = \
160         postgresql \
161         postgresql-contrib-8.2 \
162         postgresql-plperl-8.2 \
163         postgresql-server-dev-8.2
164
165 PGSQL_CLIENT_DEBS_83 = \
166         postgresql-client
167
168 PGSQL_SERVER_DEBS_83 = \
169         postgresql \
170         postgresql-contrib-8.3 \
171         postgresql-plperl-8.3 \
172         postgresql-server-dev-8.3
173
174 GENTOOS = \
175     yaz\
176     aspell-en\
177     dev-db/libpq\
178     dev-db/postgresql\
179     dev-perl/Email-Send\
180     dev-perl/DateTime\
181     dev-perl/DateTime-TimeZone\
182     dev-perl/DBD-Pg\
183     dev-perl/GD-Graph3d\
184     dev-perl/Text-Aspell\
185     dev-perl/Template-Toolkit\
186     dev-perl/Text-CSV_XS\
187     dev-perl/Spreadsheet-WriteExcel
188
189 GENTOO_PERL = \
190     MARC::Record \
191     Net::Z3950::ZOOM \
192     Text::CSV
193
194 DEB_APACHE_MODS = \
195     expires\
196     include\
197     proxy\
198     proxy_http\
199     rewrite
200
201 DEB_APACHE_DISMODS = \
202     deflate
203
204 # Chronically unpackaged CPAN modules
205 CPAN_MODULES = \
206     Business::CreditCard::Object \
207     Net::Z3950::Simple2ZOOM \
208     SRU
209
210 # Intrepid and Lenny have libmarc-charset-perl, libmarc-xml-perl, libnet-z3950-zoom-perl
211 CPAN_MODULES_MARC = \
212     MARC::Charset \
213     MARC::File::XML \
214     Net::Z3950::ZOOM
215
216 # ----------------------------------------------------------------------------
217
218 all: 
219         @echo "please specify an OS" && exit 0
220
221 # these should be the same for any distro
222 install: install_cpan install_js_sm install_libdbi 
223
224 centos: install_centos_pgsql install_centos_rpms install_yaz install_cpan_marc install install_centos_perl create_ld_local
225
226 debian-etch: etch generic_debian
227 debian-lenny: lenny generic_debian
228 etch: install_pgsql_client_debs_81 install_yaz install_cpan_marc
229 lenny: install_pgsql_client_debs_83 install_extra_debs
230 generic_debian:  install_debs install debian_sys_config
231
232 gentoo: install_gentoos install_gentoo_perl install
233
234 rhel: centos
235
236 ubuntu-gutsy: hardy generic_ubuntu 
237 ubuntu-hardy: hardy generic_ubuntu
238 ubuntu-intrepid: intrepid generic_ubuntu
239 hardy: install_pgsql_client_debs_82 install_yaz install_cpan_marc
240 intrepid: install_pgsql_client_debs_83 install_extra_debs
241 generic_ubuntu: install_debs install debian_sys_config
242
243 # - COMMON TARGETS ---------------------------------------------------------
244
245 # Install the CPAN modules
246 install_cpan: 
247         for m in $(CPAN_MODULES); do perl -MCPAN -e "install \"$$m\";"; done
248
249 # Install the CPAN modules for MARC functionality
250 install_cpan_marc: 
251         for m in $(CPAN_MODULES_MARC); do perl -MCPAN -e "install \"$$m\";"; done
252
253 # Install a known working version of YAZ
254 install_yaz:    
255         if [ ! -d $(YAZ) ]; then wget $(YAZ_HOST)/$(YAZ).tar.gz; fi;
256         tar xzf $(YAZ).tar.gz
257         cd $(YAZ) && ./configure && make && make install
258
259 # Install the custom spidermonkey libs and JavaScript-SpiderMonkey Perl modules
260 install_js_sm: 
261         if [ ! -f $(LIBJS).tar.gz ]; then wget $(LIBJS_URL); fi;
262         if [ ! -f $(LIBJS_PERL).tar.gz ]; then wget $(LIBJS_PERL_URL); fi;
263         tar -zxf $(LIBJS).tar.gz
264         tar -zxf $(LIBJS_PERL).tar.gz
265         cd js/src/ && make -f Makefile.ref
266         mkdir -p $(JS_INSTALL_PREFIX)/include/js/
267         cp js/src/*.h $(JS_INSTALL_PREFIX)/include/js/
268         cp js/src/*.tbl $(JS_INSTALL_PREFIX)/include/js/
269         cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/
270         cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/
271         cd $(LIBJS_PERL) && perl Makefile.PL -E4X && make && make test && make install
272
273
274 # Install libdbi and the postgres drivers
275 install_libdbi:
276         if [ ! -d $(LIBDBI) ]; then wget $(LIBDBI_HOST)/$(LIBDBI).tar.gz; fi;
277         if [ ! -d $(LIBDBI_DRIVERS) ]; then wget $(LIBDBI_HOST)/$(LIBDBI_DRIVERS).tar.gz; fi;
278         tar -zxf $(LIBDBI).tar.gz
279         tar -zxf $(LIBDBI_DRIVERS).tar.gz
280         cd $(LIBDBI) && ./configure --disable-docs && make all install
281         cd $(LIBDBI_DRIVERS) && ./configure  \
282                 --disable-docs --with-pgsql --enable-libdbi && make all install  
283
284
285 clean:
286         make -C $(LIBDBI) clean
287         make -C $(LIBDBI_DRIVERS) clean
288         make -C $(LIBJS_PERL) clean
289         make -f Makefile.ref -C js/src/ clean
290
291
292 # ------------------------------------------------------------------
293 # - DEBIAN ---------------------------------------------------------
294
295 debian_sys_config: 
296         # link the apache modules in
297         for m in $(DEB_APACHE_MODS); do a2enmod $$m; done;
298         # keep the bad apache modules away
299         for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done;
300         # refresh the dynamic library cache
301         ldconfig
302
303 # Install the debian-specific dependencies
304 install_debs:
305         $(APT_TOOL) install $(DEBS)
306
307 install_pgsql_client_debs_83:
308         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_83)
309
310 install_pgsql_server_debs_83:
311         $(APT_TOOL) install $(PGSQL_SERVER_DEBS_83)
312
313 install_pgsql_client_debs_82:
314         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_82)
315
316 install_pgsql_server_debs_82:
317         $(APT_TOOL) install $(PGSQL_SERVER_DEBS_82)
318
319 # Etch requires an explicit version to avoid PostgreSQL 7.4
320 install_pgsql_client_debs_81:
321         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_81)
322
323 # Etch requires an explicit version to avoid PostgreSQL 7.4
324 install_pgsql_server_debs_81:
325         $(APT_TOOL) install $(PGSQL_SERVER_DEBS_81)
326
327 # Install the debian-specific dependencies for more modern distros
328 install_extra_debs:
329         $(APT_TOOL) install $(EXTRA_DEBS)
330
331
332 # ------------------------------------------------------------------
333 # - GENTOO ---------------------------------------------------------
334
335 install_gentoos:
336         emerge -n $(GENTOOS)
337
338 install_gentoo_perl:
339         for m in $(GENTOO_PERL); do perl -MCPAN -e "install \"$$m\";"; done
340
341 # ------------------------------------------------------------------
342     
343
344 # CENTOS
345 install_centos_rpms:
346         yum -y install $(CENTOS)
347
348 install_centos_pgsql:
349         yum -y install $(PGSQL_CENTOS)
350
351 install_centos_perl:
352         for m in $(CENTOS_PERL_FORCE); do perl -MCPAN -e "CPAN::Shell->force(qw#install $$m#);"; done
353         for m in $(CENTOS_PERL); do perl -MCPAN -e "install \"$$m\";"; done
354         for m in $(CENTOS_PERL_VERSION); do perl -MCPAN -e "CPAN::Shell->install \"$$m\";"; done
355         for m in $(CENTOS_PERL_NOTEST); do perl -MCPAN -e "CPAN::Shell->notest('install', \"$$m\";"; done
356
357 # We need to add /usr/local/lib to the ldconfig list of directories on CentOS,
358 # if it is not already there
359 create_ld_local:
360         if [ "$$(ldconfig -v 2> /dev/null | grep '^/usr/local/lib' | wc -l)" -eq 0 ]; then \
361                 echo '/usr/local/lib' >> /etc/ld.so.conf.d/local.conf; \
362                 ldconfig; \
363         fi;
364
365 # vim:noet:sw=4:ts=4: