]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
Force the Class::DBI::Frozen::301 install a different, working way
[working/Evergreen.git] / Open-ILS / src / extras / Makefile.install
1 # ---------------------------------------------------------------------
2 # Author: Bill Erickson <erickson@esilibrary.com>
3 # Author: Dan Scott <dscott@laurentian.ca>
4 #
5 # Makefile to install prerequisites for OpenSRF and Evergreen
6 #
7 # Currently supports Debian (lenny/squeeze), Ubuntu (hardy/lucid), and Fedora (13).
8 # Working towards support of CentOS 5 / RHEL 5.
9 # Installs Perl prereqs, libjs with Perl wrapper, libdbi, libdbi-drivers, and libyaz
10 #
11 # usage:
12 #       make -f Makefile.install debian-lenny
13 #       - or -
14 #       make -f Makefile.install debian-squeeze
15 #       - or -
16 #       make -f Makefile.install ubuntu-hardy
17 #       - or -
18 #       make -f Makefile.install ubuntu-lucid
19 #       - or -
20 #       make -f Makefile.install fedora-13
21 #       - or -
22 #       make -f Makefile.install centos
23 #       - or -
24 #       make -f Makefile.install rhel
25 #
26 # Notes:
27 #
28 #       This makefile has been tested much more with Debian and Ubuntu than
29 #       Fedora, CentOS, or RHEL.
30 #
31 # ---------------------------------------------------------------------
32  
33 # Make any assumptions about the shell being used explicit
34 SHELL=/bin/bash 
35
36 LIBJS=js-1.7.0
37 LIBJS_PERL=JavaScript-SpiderMonkey-0.20
38 LIBJS_URL=http://ftp.mozilla.org/pub/mozilla.org/js/$(LIBJS).tar.gz
39 LIBJS_PERL_URL=http://mirror.datapipe.net/pub/CPAN/authors/id/T/TB/TBUSCH/$(LIBJS_PERL).tar.gz
40 # used for installing libjs lib and header files
41 JS_INSTALL_PREFIX=/usr/
42
43 # The libdbi sources can be fetched from sourceforge.net.  They are stored on
44 # the open-ils.org site now for ease of direct linking
45 LIBDBI=libdbi-0.8.3
46 LIBDBI_DRIVERS=libdbi-drivers-0.8.3
47 LIBDBI_HOST=http://open-ils.org/~denials/evergreen
48
49 # We need a recent version of Yaz
50 # Debian Lenny and Ubuntu 8.10 come with 3.0.34
51 YAZ=yaz-3.0.47
52 YAZ_HOST=http://ftp.indexdata.dk/pub/yaz
53
54 # Business::OnlinePayment is not packaged on CentOS/RHEL
55 PAY_ONLINE=Business-OnlinePayment-3.00_08.tar.gz
56 PAY_ONLINE_HOST=http://ftp.perl.org/pub/CPAN/authors/id/I/IV/IVAN/
57
58 APT_TOOL=aptitude -yq
59
60 # 64 or 32 bit os?
61 LBITS=$(shell getconf LONG_BIT)
62
63 # Fedora 64-bit?
64 FEDORA_64=$(shell uname -r | grep "fc[0-9][0-9].x86_64")
65
66 #RHEL/Centos PGSQL 
67 PGSQL_HOST=http://yum.pgsqlrpms.org/reporpms/8.4
68 PGSQL_CENTOS=pgdg-centos-8.4-2.noarch.rpm
69 PGSQL_REDHAT=pgdg-redhat-8.4-2.noarch.rpm       
70
71 # Debian dependencies
72 DEBS =  \
73         apache2-prefork-dev\
74         aspell\
75         aspell-en\
76         libbusiness-creditcard-perl\
77         libbusiness-onlinepayment-authorizenet-perl\
78         libbusiness-onlinepayment-perl\
79         libdatetime-format-builder-perl\
80         libdatetime-format-iso8601-perl\
81         libdatetime-format-mail-perl\
82         libdatetime-perl\
83         libdatetime-timezone-perl\
84         libdatetime-set-perl\
85         libdbd-pg-perl\
86         libemail-send-perl\
87         libgd-graph3d-perl\
88         liblog-log4perl-perl\
89         libmarc-record-perl\
90         libncurses5-dev\
91         libnet-server-perl\
92         libnspr4-dev\
93         libole-storage-lite-perl\
94         libparent-perl \
95         libpq-dev\
96         libreadline5-dev\
97         libspreadsheet-writeexcel-perl\
98         libssh2-1-dev\
99         libtext-aspell-perl\
100         libtext-csv-perl\
101         libuniversal-require-perl\
102         libunix-syslog-perl
103
104 # Debian Lenny and Ubuntu Intrepid bundle recent versions of yaz
105 EXTRA_DEBS = \
106         libbusiness-isbn-perl\
107         libbusiness-isbn-data-perl\
108         libmarc-charset-perl \
109         libmarc-xml-perl \
110         libnet-z3950-zoom-perl \
111         libyaz-dev \
112         yaz
113
114 EXTRA_DEBS_SQUEEZE = \
115     libuuid-tiny-perl
116
117 # Ubuntu Hardy requires libencode-perl # to get a version of Encode
118 # > 2.12 - see bug 525069.
119 EXTRA_ENCODE = \
120         libencode-perl
121
122 CENTOS = \
123         aspell \
124         aspell-devel \
125         aspell-en \
126         gd-devel \
127         libssh2-devel \
128         openssl-devel \
129         perl-Business-CreditCard \
130         perl-Business-ISBN \
131         perl-Business-ISBN-Data \
132         perl-Business-OnlinePayment \
133         perl-Class-Data-Inheritable \
134         perl-DateTime-Format-Builder \
135         perl-DateTime-Format-Strptime \
136         perl-Ima-DBI \
137         perl-DBD-Pg \
138         perl-GD-Graph3d \
139         perl-IO-stringy \
140         perl-Spreadsheet-WriteExcel \
141         perl-Text-Aspell \
142         perl-Text-CSV
143
144 CENTOS_PERL = \
145         Encode \
146         DBIx::ContextualFetch \
147         Getopt::Long \
148         Net::SSH2 \
149         Net::uFTP \
150         Net::XMPP \
151         Net::Z3950::ZOOM
152
153 FEDORA_13_RPMS = \
154         aspell \
155         aspell-en \
156         js-devel \
157         libdbi \
158         libdbi-dbd-pgsql \
159         libdbi-devel \
160         libssh2-devel \
161         libyaz \
162         libyaz-devel \
163         mod_ssl \
164         ncurses-devel \
165         ncurses-libs \
166         perl-parent \
167         perl-Business-CreditCard \
168         perl-Business-ISBN \
169         perl-Business-ISBN-Data \
170         perl-Email-Send \
171         perl-GDGraph3d \
172         perl-Net-SSH2 \
173         perl-OLE-Storage_Lite \
174         perl-Spreadsheet-WriteExcel \
175         perl-Text-Aspell \
176         perl-Text-CSV \
177         perl-Text-CSV_XS \
178         perl-XML-Writer \
179         postgresql-devel \
180         readline-devel \
181         tcp_wrappers-devel \
182         yaz
183
184 # Note: B:O:AuthorizeNet 3.21 fails with https://rt.cpan.org/Public/Bug/Display.html?id=55172
185 # Should be fixed in 3.22
186 # MARC::Record 2.0.1 is required but only 2.0.0 is packaged
187 FEDORA_13_CPAN = \
188         Business::OnlinePayment \
189         Business::OnlinePayment::AuthorizeNet \
190         MARC::Record
191
192 PGSQL_84_RPMS = \
193         postgresql-8.4* \
194         postgresql-contrib-8.4* \
195         postgresql-devel-8.4* \
196         postgresql-plpe*-8.4* \
197         postgresql-server-8.4*
198
199 PGSQL_CLIENT_DEBS_82 = \
200         postgresql-client
201
202 PGSQL_CLIENT_DEBS_83 = \
203         postgresql-client
204
205 PGSQL_CLIENT_DEBS_84 = \
206         postgresql-client
207
208 PGSQL_SERVER_DEBS_84 = \
209         postgresql \
210         postgresql-contrib-8.4 \
211         postgresql-plperl-8.4 \
212         postgresql-server-dev-8.4
213
214 DEB_APACHE_MODS = \
215     expires\
216     include\
217     proxy\
218     proxy_http\
219     rewrite
220
221 DEB_APACHE_DISMODS = \
222     deflate
223
224 # Chronically unpackaged CPAN modules
225 CPAN_MODULES = \
226     Business::EDI \
227     Library::CallNumber::LC \
228     Net::uFTP \
229     Net::Z3950::Simple2ZOOM \
230     SRU
231
232 # More chronically unpackaged CPAN modules (available in Squeeze though)
233 CPAN_MODULES_MORE = \
234     Business::CreditCard::Object \
235     MARC::Record \
236     UUID::Tiny
237
238 # Are we sure most distros don't come with an acceptable version of Safe.pm?
239 CPAN_MODULES_SAFE = \
240         Safe
241
242 # Recent Debian/Ubuntus have libmarc-charset-perl, libmarc-xml-perl, libnet-z3950-zoom-perl
243 CPAN_MODULES_MARC = \
244         Business::ISBN \
245         Business::ISBN::Data \
246     MARC::Charset \
247     MARC::File::XML \
248     Net::Z3950::ZOOM
249
250 CPAN_MODULES_FORCE = \
251         Class::DBI::Frozen::301
252
253 # ----------------------------------------------------------------------------
254
255 all: 
256         @echo "please specify an OS" && exit 0
257
258 # these should be the same for any distro
259 install: install_cpan install_js_sm install_libdbi install_cpan_force
260
261 centos: install_centos_pgsql centos_like
262 rhel: install_redhat_pgsql centos_like
263 centos_like: install_centos_rpms install_yaz install_cpan_marc install install_centos_perl create_ld_local install_cpan_safe install_cpan_force
264
265 fedora-13: install_fedora_13_rpms install_cpan install_cpan_fedora install_cpan_marc install_spidermonkey install_cpan_force
266
267 debian-lenny: lenny generic_debian install_cpan_more install_cpan_safe
268 debian-squeeze: squeeze generic_debian
269 lenny: install_pgsql_client_debs_83 install_extra_debs
270 squeeze: install_pgsql_client_debs_84  install_extra_debs_squeeze
271 generic_debian:  install_debs install debian_sys_config install_cpan_force
272
273 ubuntu-hardy: hardy generic_ubuntu
274 ubuntu-lucid: lucid generic_ubuntu
275 hardy: install_pgsql_client_debs_82 install_yaz install_cpan_marc install_extra_encode
276 lucid: install_pgsql_client_debs_84 install_extra_debs
277 generic_ubuntu: install_debs install debian_sys_config install_cpan_more install_cpan_safe install_cpan_force
278
279 # - COMMON TARGETS ---------------------------------------------------------
280
281 # Install the CPAN modules
282 install_cpan: 
283         for m in $(CPAN_MODULES); do perl -MCPAN -e "install \"$$m\";"; done
284
285 install_cpan_more: 
286         for m in $(CPAN_MODULES_MORE); do perl -MCPAN -e "install \"$$m\";"; done
287
288 # Install the CPAN modules for MARC functionality
289 install_cpan_marc: 
290         for m in $(CPAN_MODULES_MARC); do perl -MCPAN -e "install \"$$m\";"; done
291
292 install_cpan_force:
293         for m in $(CPAN_MODULES_FORCE); do \
294                 echo "force install $$m" | perl -MCPAN -e shell ;\
295         done
296
297 # Install the Safe Perl module
298 # Is this really unpackaged everywhere except for Fedora?
299 install_cpan_safe: 
300         for m in $(CPAN_MODULES_SAFE); do perl -MCPAN -e "install \"$$m\";"; done
301
302 # Install the CPAN modules for Fedora 13
303 install_cpan_fedora: 
304         for m in $(FEDORA_13_CPAN); do perl -MCPAN -e "install \"$$m\";"; done
305
306 # Install a known working version of YAZ
307 install_yaz:    
308         if [ ! -d $(YAZ) ]; then wget $(YAZ_HOST)/$(YAZ).tar.gz; fi;
309         tar xzf $(YAZ).tar.gz
310         cd $(YAZ) && ./configure && make && make install && ldconfig
311
312 # Install the custom spidermonkey libs and JavaScript-SpiderMonkey Perl modules
313 install_js_sm: install_libjs install_spidermonkey
314
315 install_libjs: 
316         if [ ! -f $(LIBJS).tar.gz ]; then wget $(LIBJS_URL); fi;
317         tar -zxf $(LIBJS).tar.gz
318         cd js/src/ && JS_THREADSAFE=true JS_DIST=/usr make -f Makefile.ref
319         mkdir -p $(JS_INSTALL_PREFIX)/include/js/
320         cp js/src/*.h $(JS_INSTALL_PREFIX)/include/js/
321         cp js/src/*.tbl $(JS_INSTALL_PREFIX)/include/js/
322         cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/
323         cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/
324
325 install_spidermonkey:
326         if [ ! -f $(LIBJS_PERL).tar.gz ]; then wget $(LIBJS_PERL_URL); fi;
327         tar -zxf $(LIBJS_PERL).tar.gz
328         if [ ! -z $(FEDORA_64) ]; then \
329                 sed -i -e 's/"\/usr\/lib"/"\/usr\/lib64"/' $(LIBJS_PERL)/Makefile.PL ; \
330                 sed -i -e 's/js32.dll/libjs.so/' $(LIBJS_PERL)/Makefile.PL ; \
331         fi;
332         cd $(LIBJS_PERL) && perl Makefile.PL -E4X -JS_THREADSAFE && make && make test && make install
333
334
335 # Install libdbi and the postgres drivers
336 install_libdbi:
337         if [ ! -d $(LIBDBI) ]; then wget $(LIBDBI_HOST)/$(LIBDBI).tar.gz; fi;
338         if [ ! -d $(LIBDBI_DRIVERS) ]; then wget $(LIBDBI_HOST)/$(LIBDBI_DRIVERS).tar.gz; fi;
339         tar -zxf $(LIBDBI).tar.gz
340         tar -zxf $(LIBDBI_DRIVERS).tar.gz
341         cd $(LIBDBI) && ./configure --disable-docs && make all install
342         cd $(LIBDBI_DRIVERS) && ./configure  \
343                 --disable-docs --with-pgsql --enable-libdbi && make all install  
344
345 clean:
346         make -C $(LIBDBI) clean
347         make -C $(LIBDBI_DRIVERS) clean
348         make -C $(LIBJS_PERL) clean
349         make -f Makefile.ref -C js/src/ clean
350
351
352 # ------------------------------------------------------------------
353 # - DEBIAN ---------------------------------------------------------
354
355 debian_sys_config: 
356         # link the apache modules in
357         for m in $(DEB_APACHE_MODS); do a2enmod $$m; done;
358         # keep the bad apache modules away
359         for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done;
360         # refresh the dynamic library cache
361         ldconfig
362
363 # Install the debian-specific dependencies
364 install_debs:
365         $(APT_TOOL) install $(DEBS)
366
367 install_pgsql_client_debs_84:
368         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_84)
369
370 install_pgsql_server_debs_84:
371         LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
372
373 install_pgsql_client_debs_83:
374         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_83)
375
376 install_pgsql_client_debs_82:
377         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_82)
378
379 # Install the debian-specific dependencies for more modern distros
380 install_extra_debs_squeeze: install_extra_debs
381         $(APT_TOOL) install $(EXTRA_DEBS_SQUEEZE)
382
383 install_extra_debs:
384         $(APT_TOOL) install $(EXTRA_DEBS)
385
386 # Install specific modules required by Ubuntu Hardy - see bug 525069
387 install_extra_encode:
388         $(APT_TOOL) install $(EXTRA_ENCODE)
389
390 # ------------------------------------------------------------------
391
392 # FEDORA 13
393 install_fedora_13_rpms:
394         yum -y update
395         yum -y install $(FEDORA_13_RPMS)
396
397 install_fedora_13_pgsql_server:
398         yum -y install $(PGSQL_84_RPMS)
399
400 # CENTOS
401 install_centos_rpms:
402         yum -y install $(CENTOS)
403         yum -y update
404         if [ $(LBITS) -eq 64 ]; then \
405                 ln -sf /usr/lib64/libpq.* /usr/lib/ && \
406                 ln -sf /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so /usr/lib/ && \
407                 ldconfig ; \
408         fi;
409         if [ $(LBITS) -eq 32 ]; then \
410                 ln -sf /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so /usr/lib && \
411                 ldconfig ; \
412         fi;
413
414 install_centos_pgsql:
415         if [ $(LBITS) -eq 64 ]; then yum remove -y postgresql-libs-8.1*i386 apr-util-devel-*i386 ; fi;
416         wget $(PGSQL_HOST)/$(PGSQL_CENTOS)
417         rpm -Uvh --force ./$(PGSQL_CENTOS)
418         yum update -y
419         yum -y install $(PGSQL_84_RPMS)
420
421 install_redhat_pgsql:
422         if [ $(LBITS) -eq 64 ]; then yum remove -y postgresql-libs-8.1*i386 apr-util-devel-*i386 ; fi;
423         wget $(PGSQL_HOST)/$(PGSQL_REDHAT)
424         rpm -Uvh --force ./$(PGSQL_REDHAT)
425         yum update -y
426         yum -y install $(PGSQL_84_RPMS)
427
428 install_centos_perl:
429         for m in $(CENTOS_PERL); do perl -MCPAN -e "install \"$$m\";"; done
430         echo "force install Business::OnlinePayment::AuthorizeNet" | perl -MCPAN -e shell
431         echo "force install Scalar::Util" | perl -MCPAN -e shell        
432
433 # We need to add /usr/local/lib to the ldconfig list of directories on CentOS,
434 # if it is not already there
435 create_ld_local:
436         if [ "$$(ldconfig -v 2> /dev/null | grep '^/usr/local/lib' | wc -l)" -eq 0 ]; then \
437                 echo '/usr/local/lib' >> /etc/ld.so.conf.d/local.conf; \
438                 ldconfig; \
439         fi;
440
441 # vim:noet:sw=4:ts=4: