]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.ubuntu-precise
LP#1362210: Install PostgreSQL packages where we can
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.ubuntu-precise
1 # install files for Ubuntu 12.04 LTS Precise Pangolin
2
3 DIR = $(dir $(lastword $(MAKEFILE_LIST)))
4
5 export DEB_PGSQL_COMMON_MODS = \
6         gcc \
7         libbusiness-isbn-perl \
8         libjson-xs-perl \
9         liblibrary-callnumber-lc-perl \
10         libmarc-record-perl \
11         libmarc-xml-perl \
12         libuuid-tiny-perl \
13         libxml-libxml-perl \
14         libxml-libxslt-perl
15
16 export DEBS = \
17         $(DEB_PGSQL_COMMON_MODS) \
18         apache2-prefork-dev\
19         aspell\
20         aspell-en\
21         libbusiness-creditcard-perl\
22         libbusiness-edi-perl \
23         libbusiness-isbn-data-perl\
24         libbusiness-issn-perl\
25         libbusiness-onlinepayment-authorizenet-perl\
26         libbusiness-onlinepayment-perl\
27         libdatetime-format-builder-perl\
28         libdatetime-format-iso8601-perl\
29         libdatetime-format-mail-perl\
30         libdatetime-perl\
31         libdatetime-set-perl\
32         libdatetime-timezone-perl\
33         libdbd-pg-perl\
34         libdbd-pgsql \
35         libdbi-dev \
36         libemail-send-perl\
37         libemail-simple-perl\
38         libgd-graph3d-perl\
39         liblocale-maketext-lexicon-perl\
40         liblog-log4perl-perl\
41         libmarc-charset-perl \
42         libncurses5-dev\
43         libnet-https-any-perl \
44         libnet-ip-perl\
45         libnet-ldap-perl \
46         libnet-server-perl\
47         libnet-ssh2-perl\
48         libnet-z3950-simple2zoom-perl\
49         libnet-z3950-simpleserver-perl\
50         libnet-z3950-zoom-perl \
51         libnspr4-dev\
52         libole-storage-lite-perl\
53         libbz2-dev \
54         libpq5\
55         libpq-dev\
56         librpc-xml-perl\
57         libsru-perl\
58         libssh2-1-dev\
59         libtext-aspell-perl\
60         libtext-csv-perl\
61         libuniversal-require-perl\
62         libunix-syslog-perl\
63         libyaz-dev\
64         postgresql-client-9.1\
65         libsoap-lite-perl\
66         libtest-warn-perl\
67         libtest-output-perl\
68         libparse-recdescent-perl\
69         yaz
70
71 export DEB_APACHE_MODS = \
72     expires\
73     include\
74     proxy\
75     proxy_http\
76     rewrite
77
78 export DEB_APACHE_DISMODS = \
79     deflate
80
81 export CPAN_MODULES = \
82         Excel::Writer::XLSX \
83         Business::CreditCard::Object \
84         Business::OnlinePayment::PayPal \
85         Template::Plugin::POSIX \
86         Rose::URI \
87         Safe
88
89 export CPAN_MODULES_FORCE = \
90         Business::Stripe \
91         Class::DBI::Frozen::301
92
93 PGSQL_SERVER_DEBS_91 = \
94         $(DEB_PGSQL_COMMON_MODS) \
95         postgresql-9.1 \
96         postgresql-contrib-9.1 \
97         postgresql-plperl-9.1 \
98         postgresql-server-dev-9.1
99
100 all:
101         make -f $(DIR)/Makefile.debian install_debs
102         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
103         make -f $(DIR)/Makefile.common install_cpan
104         make -f $(DIR)/Makefile.common install_cpan_force
105         make -f $(DIR)/Makefile.debian install_js_sm
106         make -f $(DIR)/Makefile.debian debian_sys_config
107
108 install_postgres_server:
109         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
110
111 clean:
112         make -f $(DIR)/Makefile.common clean
113         make -f $(DIR)/Makefile.debian clean
114
115 # vim:noet:sw=4:ts=4: