]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-wheezy
5637da2025c25667627cdebc1d5c8105383e0c8c
[working/Evergreen.git] / Open-ILS / src / extras / install / Makefile.debian-wheezy
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         libdate-manip-perl\
28         libdatetime-format-builder-perl\
29         libdatetime-format-iso8601-perl\
30         libdatetime-format-mail-perl\
31         libdatetime-perl\
32         libdatetime-set-perl\
33         libdatetime-timezone-perl\
34         libdbd-pg-perl\
35         libemail-send-perl\
36         libemail-simple-perl\
37         libgd-graph3d-perl\
38         liblocale-maketext-lexicon-perl\
39         liblog-log4perl-perl\
40         libmarc-charset-perl \
41         libncurses5-dev\
42         libnet-ip-perl\
43         libnet-ldap-perl \
44         libnet-server-perl\
45         libnet-ssh2-perl\
46         libnet-z3950-simple2zoom-perl\
47         libnet-z3950-simpleserver-perl\
48         libnet-z3950-zoom-perl \
49         libnspr4-dev\
50         libole-storage-lite-perl\
51         libparent-perl\
52         libpq5\
53         libpq-dev\
54         librpc-xml-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.1\
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         Excel::Writer::XLSX \
82         Business::OnlinePayment::PayPal \
83         Template::Plugin::POSIX \
84         Safe
85
86 export CPAN_MODULES_FORCE = \
87         Business::Stripe \
88         Class::DBI::Frozen::301
89
90 PGSQL_SERVER_DEBS_91 = \
91         $(DEB_PGSQL_COMMON_MODS) \
92         postgresql-9.1 \
93         postgresql-contrib-9.1 \
94         postgresql-plperl-9.1 \
95         postgresql-server-dev-9.1
96
97 # note: some prereqs are repeated in the developer/packager 
98 # sections to support building Evergreen packages on servers
99 # where Evergreen and its prereqs are not installed.
100
101 DEVELOPER_DEBS = \
102         make \
103         automake \
104         autoconf \
105         libtool 
106
107 PACKAGER_DEBS = \
108         make \
109         automake \
110         autoconf \
111         libtool \
112         libtemplate-perl \
113         liblocale-maketext-lexicon-perl \
114         asciidoc \
115         source-highlight \
116         translate-toolkit \
117         python-dev \
118         python-levenshtein \
119         python-polib \
120         python-setuptools \
121         python-simplejson \
122         python-lxml \
123         zip \
124         unzip \
125         nsis
126
127 all:
128         make -f $(DIR)/Makefile.debian install_debs
129         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
130         make -f $(DIR)/Makefile.common install_cpan
131         make -f $(DIR)/Makefile.common install_cpan_force
132         make -f $(DIR)/Makefile.common install_libdbi
133         make -f $(DIR)/Makefile.debian install_js_sm
134         make -f $(DIR)/Makefile.debian debian_sys_config
135
136 install_postgres_server:
137         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
138
139 install_developer:
140         make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
141         make -f $(DIR)/Makefile.common install_nodejs_from_source
142
143 install_packager: install_developer
144         make -f $(DIR)/Makefile.debian DEBS="$(PACKAGER_DEBS)"
145
146 clean:
147         make -f $(DIR)/Makefile.common clean
148         make -f $(DIR)/Makefile.debian clean
149
150 # vim:noet:sw=4:ts=4: