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