]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/Makefile.install
Add UUID::Tiny to Fedora prerequisites
[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         UUID::Tiny
195
196 PGSQL_84_RPMS = \
197         postgresql-8.4* \
198         postgresql-contrib-8.4* \
199         postgresql-devel-8.4* \
200         postgresql-plpe*-8.4* \
201         postgresql-server-8.4*
202
203 PGSQL_CLIENT_DEBS_82 = \
204         postgresql-client
205
206 PGSQL_CLIENT_DEBS_83 = \
207         postgresql-client
208
209 PGSQL_CLIENT_DEBS_84 = \
210         postgresql-client
211
212 PGSQL_SERVER_DEBS_84 = \
213         postgresql \
214         postgresql-contrib-8.4 \
215         postgresql-plperl-8.4 \
216         postgresql-server-dev-8.4
217
218 DEB_APACHE_MODS = \
219     expires\
220     include\
221     proxy\
222     proxy_http\
223     rewrite
224
225 DEB_APACHE_DISMODS = \
226     deflate
227
228 # Chronically unpackaged CPAN modules
229 CPAN_MODULES = \
230     Business::EDI \
231     Library::CallNumber::LC \
232     Net::Z3950::Simple2ZOOM \
233     SRU
234
235 # More chronically unpackaged CPAN modules (available in Squeeze though)
236 CPAN_MODULES_MORE = \
237     Business::CreditCard::Object \
238     MARC::Record \
239     UUID::Tiny
240
241 # Are we sure most distros don't come with an acceptable version of Safe.pm?
242 CPAN_MODULES_SAFE = \
243         Safe
244
245 # Recent Debian/Ubuntus have libmarc-charset-perl, libmarc-xml-perl, libnet-z3950-zoom-perl
246 CPAN_MODULES_MARC = \
247         Business::ISBN \
248         Business::ISBN::Data \
249     MARC::Charset \
250     MARC::File::XML \
251     Net::Z3950::ZOOM
252
253 CPAN_MODULES_FORCE = \
254         Class::DBI::Frozen::301
255
256 # ----------------------------------------------------------------------------
257
258 all: 
259         @echo "please specify an OS" && exit 0
260
261 # these should be the same for any distro
262 install: install_cpan install_js_sm install_libdbi install_cpan_force
263
264 centos: install_centos_pgsql centos_like
265 rhel: install_redhat_pgsql centos_like
266 centos_like: install_centos_rpms install_yaz install_cpan_marc install install_centos_perl create_ld_local install_cpan_safe install_cpan_force
267
268 fedora13: install_fedora_13_rpms install_cpan install_cpan_fedora install_cpan_marc install_spidermonkey install_cpan_force
269 fedora14: fedora13
270
271 debian-lenny: lenny generic_debian install_cpan_more install_cpan_safe
272 debian-squeeze: squeeze generic_debian
273 lenny: install_pgsql_client_debs_83 install_extra_debs
274 squeeze: install_pgsql_client_debs_84  install_extra_debs_squeeze
275 generic_debian:  install_debs install debian_sys_config install_cpan_force
276
277 ubuntu-hardy: hardy generic_ubuntu
278 ubuntu-lucid: lucid generic_ubuntu
279 hardy: install_pgsql_client_debs_82 install_yaz install_cpan_marc install_extra_encode
280 lucid: install_pgsql_client_debs_84 install_extra_debs
281 generic_ubuntu: install_debs install debian_sys_config install_cpan_more install_cpan_safe install_cpan_force
282
283 # - COMMON TARGETS ---------------------------------------------------------
284
285 # Install the CPAN modules
286 install_cpan: 
287         for m in $(CPAN_MODULES); do perl -MCPAN -e "install \"$$m\";"; done
288
289 install_cpan_more: 
290         for m in $(CPAN_MODULES_MORE); do perl -MCPAN -e "install \"$$m\";"; done
291
292 # Install the CPAN modules for MARC functionality
293 install_cpan_marc: 
294         for m in $(CPAN_MODULES_MARC); do perl -MCPAN -e "install \"$$m\";"; done
295
296 install_cpan_force:
297         for m in $(CPAN_MODULES_FORCE); do \
298                 echo "force install $$m" | perl -MCPAN -e shell ;\
299         done
300
301 # Install the Safe Perl module
302 # Is this really unpackaged everywhere except for Fedora?
303 install_cpan_safe: 
304         for m in $(CPAN_MODULES_SAFE); do perl -MCPAN -e "install \"$$m\";"; done
305
306 # Install the CPAN modules for Fedora 13
307 install_cpan_fedora: 
308         for m in $(FEDORA_13_CPAN); do perl -MCPAN -e "install \"$$m\";"; done
309
310 # Install a known working version of YAZ
311 install_yaz:    
312         if [ ! -d $(YAZ) ]; then wget $(YAZ_HOST)/$(YAZ).tar.gz; fi;
313         tar xzf $(YAZ).tar.gz
314         cd $(YAZ) && ./configure && make && make install && ldconfig
315
316 # Install the custom spidermonkey libs and JavaScript-SpiderMonkey Perl modules
317 install_js_sm: install_libjs install_spidermonkey
318
319 install_libjs: 
320         if [ ! -f $(LIBJS).tar.gz ]; then wget $(LIBJS_URL); fi;
321         tar -zxf $(LIBJS).tar.gz
322         cd js/src/ && JS_THREADSAFE=true JS_DIST=/usr make -f Makefile.ref
323         mkdir -p $(JS_INSTALL_PREFIX)/include/js/
324         cp js/src/*.h $(JS_INSTALL_PREFIX)/include/js/
325         cp js/src/*.tbl $(JS_INSTALL_PREFIX)/include/js/
326         cp js/src/Linux_All_DBG.OBJ/*.so $(JS_INSTALL_PREFIX)/lib/
327         cp js/src/Linux_All_DBG.OBJ/*.a $(JS_INSTALL_PREFIX)/lib/
328
329 install_spidermonkey:
330         if [ ! -f $(LIBJS_PERL).tar.gz ]; then wget $(LIBJS_PERL_URL); fi;
331         tar -zxf $(LIBJS_PERL).tar.gz
332         if [ ! -z $(FEDORA_64) ]; then \
333                 sed -i -e 's/"\/usr\/lib"/"\/usr\/lib64"/' $(LIBJS_PERL)/Makefile.PL ; \
334         fi;
335         if [ ! -z $(FEDORA) ]; then \
336                 sed -i -e 's/js32.dll/libjs.so/' $(LIBJS_PERL)/Makefile.PL ; \
337         fi;
338         cd $(LIBJS_PERL) && perl Makefile.PL -E4X -JS_THREADSAFE && make && make test && make install
339
340
341 # Install libdbi and the postgres drivers
342 install_libdbi:
343         if [ ! -d $(LIBDBI) ]; then wget $(LIBDBI_HOST)/$(LIBDBI).tar.gz; fi;
344         if [ ! -d $(LIBDBI_DRIVERS) ]; then wget $(LIBDBI_HOST)/$(LIBDBI_DRIVERS).tar.gz; fi;
345         tar -zxf $(LIBDBI).tar.gz
346         tar -zxf $(LIBDBI_DRIVERS).tar.gz
347         cd $(LIBDBI) && ./configure --disable-docs && make all install
348         cd $(LIBDBI_DRIVERS) && ./configure  \
349                 --disable-docs --with-pgsql --enable-libdbi && make all install  
350
351 clean:
352         make -C $(LIBDBI) clean
353         make -C $(LIBDBI_DRIVERS) clean
354         make -C $(LIBJS_PERL) clean
355         make -f Makefile.ref -C js/src/ clean
356
357
358 # ------------------------------------------------------------------
359 # - DEBIAN ---------------------------------------------------------
360
361 debian_sys_config: 
362         # link the apache modules in
363         for m in $(DEB_APACHE_MODS); do a2enmod $$m; done;
364         # keep the bad apache modules away
365         for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done;
366         # refresh the dynamic library cache
367         ldconfig
368
369 # Install the debian-specific dependencies
370 install_debs:
371         $(APT_TOOL) install $(DEBS)
372
373 install_pgsql_client_debs_84:
374         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_84)
375
376 install_pgsql_server_debs_84:
377         LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
378
379 install_pgsql_client_debs_83:
380         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_83)
381
382 install_pgsql_client_debs_82:
383         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_82)
384
385 # Install the debian-specific dependencies for more modern distros
386 install_extra_debs_squeeze: install_extra_debs
387         $(APT_TOOL) install $(EXTRA_DEBS_SQUEEZE)
388
389 install_extra_debs:
390         $(APT_TOOL) install $(EXTRA_DEBS)
391
392 # Install specific modules required by Ubuntu Hardy - see bug 525069
393 install_extra_encode:
394         $(APT_TOOL) install $(EXTRA_ENCODE)
395
396 # ------------------------------------------------------------------
397
398 # FEDORA 13
399 install_fedora_13_rpms:
400         yum -y update
401         yum -y install $(FEDORA_13_RPMS)
402
403 install_fedora_13_pgsql_server:
404         yum -y install $(PGSQL_84_RPMS)
405
406 # CENTOS
407 install_centos_rpms:
408         yum -y install $(CENTOS)
409         yum -y update
410         if [ $(LBITS) -eq 64 ]; then \
411                 ln -sf /usr/lib64/libpq.* /usr/lib/ && \
412                 ln -sf /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so /usr/lib/ && \
413                 ldconfig ; \
414         fi;
415         if [ $(LBITS) -eq 32 ]; then \
416                 ln -sf /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so /usr/lib && \
417                 ldconfig ; \
418         fi;
419
420 install_centos_pgsql:
421         if [ $(LBITS) -eq 64 ]; then yum remove -y postgresql-libs-8.1*i386 apr-util-devel-*i386 ; fi;
422         wget $(PGSQL_HOST)/$(PGSQL_CENTOS)
423         rpm -Uvh --force ./$(PGSQL_CENTOS)
424         yum update -y
425         yum -y install $(PGSQL_84_RPMS)
426
427 install_redhat_pgsql:
428         if [ $(LBITS) -eq 64 ]; then yum remove -y postgresql-libs-8.1*i386 apr-util-devel-*i386 ; fi;
429         wget $(PGSQL_HOST)/$(PGSQL_REDHAT)
430         rpm -Uvh --force ./$(PGSQL_REDHAT)
431         yum update -y
432         yum -y install $(PGSQL_84_RPMS)
433
434 install_centos_perl:
435         for m in $(CENTOS_PERL); do perl -MCPAN -e "install \"$$m\";"; done
436         echo "force install Business::OnlinePayment::AuthorizeNet" | perl -MCPAN -e shell
437         echo "force install Scalar::Util" | perl -MCPAN -e shell        
438
439 # We need to add /usr/local/lib to the ldconfig list of directories on CentOS,
440 # if it is not already there
441 create_ld_local:
442         if [ "$$(ldconfig -v 2> /dev/null | grep '^/usr/local/lib' | wc -l)" -eq 0 ]; then \
443                 echo '/usr/local/lib' >> /etc/ld.so.conf.d/local.conf; \
444                 ldconfig; \
445         fi;
446
447 # vim:noet:sw=4:ts=4: