]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/extras/install/Makefile.debian-wheezy
Add ISSN support to Syndetic AC handler
[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 DEBS = \
6         apache2-prefork-dev\
7         aspell\
8         aspell-en\
9         libbusiness-creditcard-perl\
10         libbusiness-isbn-data-perl\
11         libbusiness-isbn-perl\
12         libbusiness-issn-perl\
13         libbusiness-onlinepayment-authorizenet-perl\
14         libbusiness-onlinepayment-perl\
15         libdatetime-format-builder-perl\
16         libdatetime-format-iso8601-perl\
17         libdatetime-format-mail-perl\
18         libdatetime-perl\
19         libdatetime-set-perl\
20         libdatetime-timezone-perl\
21         libdbd-pg-perl\
22         libemail-send-perl\
23         libemail-simple-perl\
24         libgd-graph3d-perl\
25         liblibrary-callnumber-lc-perl \
26         liblocale-maketext-lexicon-perl\
27         liblog-log4perl-perl\
28         libmarc-charset-perl \
29         libmarc-record-perl\
30         libmarc-xml-perl \
31         libncurses5-dev\
32         libnet-ip-perl\
33         libnet-ldap-perl \
34         libnet-server-perl\
35         libnet-ssh2-perl\
36         libnet-z3950-simple2zoom-perl\
37         libnet-z3950-zoom-perl \
38         libnspr4-dev\
39         libole-storage-lite-perl\
40         libparent-perl\
41         libpq5\
42         libpq-dev\
43         librose-uri-perl\
44         librpc-xml-perl\
45         libspreadsheet-writeexcel-perl\
46         libsru-perl\
47         libssh2-1-dev\
48         libtest-warn-perl\
49         libtext-aspell-perl\
50         libtext-csv-perl\
51         libuniversal-require-perl\
52         libunix-syslog-perl\
53     libuuid-tiny-perl\
54         libyaz-dev\
55         postgresql-client-9.1\
56         libsoap-lite-perl\
57         libbz2-dev\
58         yaz
59
60 export DEB_APACHE_MODS = \
61     expires\
62     include\
63     proxy\
64     proxy_http\
65     rewrite
66
67 export DEB_APACHE_DISMODS = \
68     deflate
69
70 export CPAN_MODULES = \
71         Business::OnlinePayment::PayPal \
72         Template::Plugin::POSIX \
73         Safe
74
75 export CPAN_MODULES_FORCE = \
76         Class::DBI::Frozen::301
77
78 PGSQL_SERVER_DEBS_91 = \
79         postgresql-9.1 \
80         postgresql-contrib-9.1 \
81         postgresql-plperl-9.1 \
82         postgresql-server-dev-9.1
83
84 all:
85         make -f $(DIR)/Makefile.debian install_debs
86         make -f $(DIR)/Makefile.debian test_for_libdbi_pkg
87         make -f $(DIR)/Makefile.common install_net_z3950_simpleserver
88         make -f $(DIR)/Makefile.common install_cpan
89         make -f $(DIR)/Makefile.common install_cpan_force
90         make -f $(DIR)/Makefile.common install_libdbi
91         make -f $(DIR)/Makefile.debian install_js_sm
92         make -f $(DIR)/Makefile.debian debian_sys_config
93
94 install_postgres_server:
95         make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)"
96
97 clean:
98         make -f $(DIR)/Makefile.common clean
99         make -f $(DIR)/Makefile.debian clean
100
101 # vim:noet:sw=4:ts=4: