]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-jessie
LP#1362210: Install PostgreSQL packages where we can
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.debian-jessie
1 # install files for Debian Wheezy
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         librose-uri-perl \
13         libuuid-tiny-perl \
14         libxml-libxml-perl \
15         libxml-libxslt-perl
16
17 export DEBS = \
18         $(DEB_PGSQL_COMMON_MODS) \
19         apache2-prefork-dev\
20         aspell\
21         aspell-en\
22         libbusiness-creditcard-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         libemail-send-perl\
35         libemail-simple-perl\
36         libgd-graph3d-perl\
37         liblocale-maketext-lexicon-perl\
38         liblog-log4perl-perl\
39         libmarc-charset-perl \
40         libncurses5-dev\
41         libnet-ip-perl\
42         libnet-ldap-perl \
43         libnet-server-perl\
44         libnet-ssh2-perl\
45         libnet-z3950-simple2zoom-perl\
46         libnet-z3950-simpleserver-perl\
47         libnet-z3950-zoom-perl \
48         libnspr4-dev\
49         libole-storage-lite-perl\
50         libparent-perl\
51         libpq5\
52         libpq-dev\
53         librpc-xml-perl\
54         libspreadsheet-writeexcel-perl\
55         libsru-perl\
56         libssh2-1-dev\
57         libtest-warn-perl\
58         libtest-output-perl\
59         libtext-aspell-perl\
60         libtext-csv-perl\
61         libuniversal-require-perl\
62         libunix-syslog-perl\
63         libyaz-dev\
64         postgresql-client-9.3\
65         libsoap-lite-perl\
66         libbz2-dev\
67         libparse-recdescent-perl\
68         yaz
69
70 export DEB_APACHE_MODS = \
71     expires\
72     include\
73     proxy\
74     proxy_http\
75     rewrite
76
77 export DEB_APACHE_DISMODS = \
78     deflate
79
80 export CPAN_MODULES = \
81         Business::OnlinePayment::PayPal \
82         Template::Plugin::POSIX \
83         Safe
84
85 export CPAN_MODULES_FORCE = \
86         Business::Stripe \
87         Class::DBI::Frozen::301
88
89 PGSQL_SERVER_DEBS_93 = \
90         $(DEB_PGSQL_COMMON_MODS) \
91         postgresql-9.3 \
92         postgresql-contrib-9.3 \
93         postgresql-plperl-9.3 \
94         postgresql-server-dev-9.3
95
96 all:
97         make -f $(DIR)/Makefile.debian install_debs
98         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
99         make -f $(DIR)/Makefile.common install_cpan
100         make -f $(DIR)/Makefile.common install_cpan_force
101         make -f $(DIR)/Makefile.common install_libdbi
102         make -f $(DIR)/Makefile.debian install_js_sm
103         make -f $(DIR)/Makefile.debian debian_sys_config
104
105 install_postgres_server:
106         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_93)"
107
108 clean:
109         make -f $(DIR)/Makefile.common clean
110         make -f $(DIR)/Makefile.debian clean
111
112 # vim:noet:sw=4:ts=4: