]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-lucid
LP 1190279 Modularize Makefile.install misc. repairs
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-lucid
1 # install files for Ubuntu 10.04 LTS Lucid Lynx
2
3 DIR = $(dir $(lastword $(MAKEFILE_LIST)))
4 APT_SAFE_TOOL = aptitude -P
5
6 # We need a recent version of Yaz
7 # Ubuntu 10.04 comes with 3.0.52
8 YAZ=yaz-4.2.32
9 YAZ_HOST=http://ftp.indexdata.dk/pub/yaz
10
11 export DEBS = \
12         apache2-prefork-dev\
13         aspell\
14         aspell-en\
15         libbusiness-creditcard-perl\
16         libbusiness-isbn-data-perl\
17         libbusiness-isbn-perl\
18         libbusiness-onlinepayment-authorizenet-perl\
19         libbusiness-onlinepayment-perl\
20         libdatetime-format-builder-perl\
21         libdatetime-format-iso8601-perl\
22         libdatetime-format-mail-perl\
23         libdatetime-perl\
24         libdatetime-set-perl\
25         libdatetime-timezone-perl\
26         libdbd-pg-perl\
27         libemail-send-perl\
28         libemail-simple-perl\
29         libgd-graph3d-perl\
30         liblocale-maketext-lexicon-perl\
31         liblog-log4perl-perl\
32         libmarc-charset-perl \
33         libmarc-xml-perl \
34         libncurses5-dev\
35         libnet-ip-perl\
36         libnet-ldap-perl \
37         libnet-server-perl\
38         libnet-ssh2-perl\
39         libnet-z3950-zoom-perl \
40         libnspr4-dev\
41         libole-storage-lite-perl\
42         libparent-perl\
43         libspreadsheet-writeexcel-perl\
44         libssh2-1-dev\
45         libtext-aspell-perl\
46         libtext-csv-perl\
47         libuniversal-require-perl\
48         libunix-syslog-perl\
49     libuuid-tiny-perl\
50         libbz2-dev\
51         libsoap-lite-perl
52
53 export DEB_APACHE_MODS = \
54     expires\
55     include\
56     proxy\
57     proxy_http\
58     rewrite
59
60 export DEB_APACHE_DISMODS = \
61     deflate
62
63 export CPAN_MODULES = \
64         Business::OnlinePayment::PayPal \
65         Library::CallNumber::LC \
66         MARC::Record \
67         Net::Z3950::Simple2ZOOM \
68         RPC::XML \
69         Template::Plugin::POSIX \
70         SRU \
71         Rose::URI \
72         Safe
73
74 export CPAN_MODULES_FORCE = \
75         Class::DBI::Frozen::301
76
77 PGSQL_SERVER_DEBS_91 = \
78         postgresql-9.1 \
79         postgresql-contrib-9.1 \
80         postgresql-plperl-9.1 \
81         postgresql-server-dev-9.1
82
83 PGSQL_CLIENT_DEBS_91 = \
84         libpq5 \
85         libpq-dev \
86         postgresql-client-9.1
87
88 all: install_yaz
89         make -f $(DIR)/Makefile.debian install_debs
90         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
91         make -f $(DIR)/Makefile.common install_net_z3950_simpleserver
92         make -f $(DIR)/Makefile.common install_cpan
93         make -f $(DIR)/Makefile.common install_cpan_force
94         make -f $(DIR)/Makefile.debian install_js_sm
95         make -f $(DIR)/Makefile.debian debian_sys_config
96
97 install_yaz:
98         if [ ! -d $(YAZ) ]; then wget $(YAZ_HOST)/$(YAZ).tar.gz; fi;
99         tar xzf $(YAZ).tar.gz
100         cd $(YAZ) && ./configure && make && make install && ldconfig
101
102 install_pgsql_server_debs_91:
103         $(APT_TOOL) install $(PGSQL_SERVER_DEBS_91)
104
105 install_pgsql_client_backport_debs_91:
106         @if [ `$(APT_TOOL) versions libpq5 | grep ^i|sed 's/^i[ \t]*//'|cut -d. -f1` -eq 8 ]; \
107                 then \
108                 echo -e "libpq5 / libpq-dev are installed as part of OpenSRF (a dependency" \
109                 "of apache2-prefork-dev), but these are the 8.4 versions and they" \
110                 "conflict with the 9.1 versions - so remove them, install the pinned" \
111                 "backports of 9.1, then reinstall the apache2-prefork-dev package.\n\n" \
112                 "**WARNING**: Saying 'Yes' to this step will _remove_ any PostgreSQL" \
113                 "databases that might currently exist on this machine." && \
114                 $(APT_SAFE_TOOL) remove libpq5 libpq-dev ; \
115         fi
116         $(APT_TOOL) install $(PGSQL_CLIENT_DEBS_91)
117         $(APT_TOOL) install apache2-prefork-dev
118
119 clean:
120         make -f $(DIR)/Makefile.common clean
121         make -f $(DIR)/Makefile.debian clean
122
123 # vim:noet:sw=4:ts=4: