]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-stretch
lp1863252 toward geosort
[Evergreen.git] / Open-ILS / src / extras / install / Makefile.debian-stretch
1 # install files for Debian Stretch
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-dev\
20         aspell\
21         aspell-en\
22         libapache2-mod-perl2\
23         libbusiness-creditcard-perl\
24         libbusiness-isbn-data-perl\
25         libbusiness-issn-perl\
26         libbusiness-onlinepayment-authorizenet-perl\
27         libbusiness-onlinepayment-payflowpro-perl\
28         libbusiness-onlinepayment-perl\
29         libdate-manip-perl\
30         libdatetime-format-builder-perl\
31         libdatetime-format-iso8601-perl\
32         libdatetime-format-mail-perl\
33         libdatetime-perl\
34         libdatetime-set-perl\
35         libdatetime-timezone-perl\
36         libdbd-pg-perl\
37         libdbd-pgsql\
38         libdbi-dev\
39         libdbi1\
40         libemail-simple-perl\
41         libemail-mime-perl\
42         libexcel-writer-xlsx-perl\
43         libgd-graph3d-perl\
44         liblocale-maketext-lexicon-perl\
45         liblog-log4perl-perl\
46         libmarc-charset-perl \
47         libncurses5-dev\
48         libnet-ip-perl\
49         libnet-ldap-perl \
50         libnet-server-perl\
51         libnet-ssh2-perl\
52         libnet-z3950-simple2zoom-perl\
53         libnet-z3950-simpleserver-perl\
54         libnet-z3950-zoom-perl \
55         libnspr4-dev\
56         libole-storage-lite-perl\
57         libparent-perl\
58         libpq5\
59         libpq-dev\
60         libpcre3-dev\
61         librpc-xml-perl\
62         libsru-perl\
63         libssh2-1-dev\
64         libtemplate-plugin-posix-perl\
65         libtest-warn-perl\
66         libtest-output-perl\
67         libtext-aspell-perl\
68         libtext-csv-perl\
69         libuniversal-require-perl\
70         libunix-syslog-perl\
71         libyaz-dev\
72         postgresql-client-9.6\
73         libsoap-lite-perl\
74         libbz2-dev\
75         libparse-recdescent-perl\
76         libhtml-defang-perl\
77         libconfig-general-perl\
78         yaz
79
80 export DEB_APACHE_MODS = \
81     expires\
82     include\
83     proxy\
84     proxy_http\
85     rewrite\
86     cgi\
87     perl\
88     remoteip
89
90 export DEB_APACHE_DISMODS = \
91     deflate
92
93 export DEB_APACHE_DISCONF = \
94     serve-cgi-bin
95
96 export CPAN_MODULES = \
97         Geo::Coder::Free \
98         Geo::Coder::OSM \
99         Geo::Coder::Google \
100         Business::OnlinePayment::PayPal \
101         Email::Send
102
103 export CPAN_MODULES_FORCE = \
104         Business::Stripe \
105         Class::DBI::Frozen::301
106
107 PGSQL_SERVER_DEBS_96 = \
108         $(DEB_PGSQL_COMMON_MODS) \
109         postgresql-9.6 \
110         postgresql-contrib-9.6 \
111         postgresql-plperl-9.6 \
112         postgresql-server-dev-9.6
113
114 PGSQL_SERVER_DEBS_10 = \
115         $(DEB_PGSQL_COMMON_MODS) \
116         postgresql-10 \
117         postgresql-contrib-10 \
118         postgresql-plperl-10 \
119         postgresql-server-dev-10
120
121 # note: some prereqs are repeated in the developer/packager 
122 # sections to support building Evergreen packages on servers
123 # where Evergreen and its prereqs are not installed.
124
125 DEVELOPER_DEBS = \
126         automake \
127         autoconf \
128         libtool \
129         chromium \
130         firefox-esr
131
132 PACKAGER_DEBS = \
133         asciidoc \
134         source-highlight \
135         zip \
136         unzip \
137         nsis
138
139 TRANSLATOR_DEBS = \
140         libtemplate-perl \
141         liblocale-maketext-lexicon-perl \
142         translate-toolkit \
143         python-dev \
144         python-levenshtein \
145         python-polib \
146         python-setuptools \
147         python-simplejson \
148         python-lxml \
149         bzr
150
151 all:
152         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
153         make -f $(DIR)/Makefile.debian debian_postgresql_repo
154         make -f $(DIR)/Makefile.debian install_debs
155         make -f $(DIR)/Makefile.common install_cpan
156         make -f $(DIR)/Makefile.common install_cpan_force
157         make -f $(DIR)/Makefile.debian debian_sys_config
158
159 install_postgres_server:
160         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
161         make -f $(DIR)/Makefile.debian debian_postgresql_repo
162         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_96)"
163
164 install_postgres_server_10:
165         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_APT_REPO_DEBS)"
166         make -f $(DIR)/Makefile.debian debian_postgresql_repo
167         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_10)"
168
169 # note: if/when grunt-cli is available as a
170 # package, use the packaged version instead.
171 install_developer:
172         make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
173         make -f $(DIR)/Makefile.common install_nodejs_from_source
174
175 install_translator: install_developer
176         make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
177
178 install_packager: install_developer install_translator
179         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
180
181 clean:
182         make -f $(DIR)/Makefile.common clean
183         make -f $(DIR)/Makefile.debian clean
184
185 # vim:noet:sw=4:ts=4: