From ae32938d760d8862a7cd838d5cd2caf8343db586 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Fri, 7 Feb 2014 06:14:52 -0500 Subject: [PATCH] LP#1315531 adding trusty Makefile.install, removing lucid support Signed-off-by: Chris Sharp Signed-off-by: Ben Shum --- .../src/extras/install/Makefile.ubuntu-trusty | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 Open-ILS/src/extras/install/Makefile.ubuntu-trusty diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty new file mode 100644 index 0000000000..418f3b88f7 --- /dev/null +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty @@ -0,0 +1,104 @@ +# install files for Ubuntu 14.04 LTS Trusty Tahr + +DIR = $(dir $(lastword $(MAKEFILE_LIST))) + +export DEBS = \ + apache2-prefork-dev\ + aspell\ + aspell-en\ + libbusiness-creditcard-perl\ + libbusiness-edi-perl \ + libbusiness-isbn-data-perl\ + libbusiness-isbn-perl\ + libbusiness-issn-perl\ + libbusiness-onlinepayment-authorizenet-perl\ + libbusiness-onlinepayment-perl\ + libdatetime-format-builder-perl\ + libdatetime-format-iso8601-perl\ + libdatetime-format-mail-perl\ + libdatetime-perl\ + libdatetime-set-perl\ + libdatetime-timezone-perl\ + libdbd-pg-perl\ + libdbd-pgsql \ + libdbi-dev \ + libemail-send-perl\ + libemail-simple-perl\ + libgd-graph3d-perl\ + liblibrary-callnumber-lc-perl \ + liblocale-maketext-lexicon-perl\ + liblog-log4perl-perl\ + libmarc-charset-perl \ + libmarc-record-perl\ + libmarc-xml-perl \ + libncurses5-dev\ + libnet-https-any-perl \ + libnet-ip-perl\ + libnet-ldap-perl \ + libnet-server-perl\ + libnet-ssh2-perl\ + libnet-z3950-simple2zoom-perl\ + libnet-z3950-simpleserver-perl\ + libnet-z3950-zoom-perl \ + libnspr4-dev\ + libole-storage-lite-perl\ + libbz2-dev \ + libpq5\ + libpq-dev\ + librpc-xml-perl\ + libspreadsheet-writeexcel-perl\ + libsru-perl\ + libssh2-1-dev\ + libtext-aspell-perl\ + libtext-csv-perl\ + libuniversal-require-perl\ + libunix-syslog-perl\ + libuuid-tiny-perl\ + libyaz-dev\ + postgresql-client-9.1\ + libsoap-lite-perl\ + libtest-warn-perl\ + yaz + +export DEB_APACHE_MODS = \ + expires\ + include\ + proxy\ + proxy_http\ + rewrite + +export DEB_APACHE_DISMODS = \ + deflate + +export CPAN_MODULES = \ + Business::CreditCard::Object \ + Business::OnlinePayment::PayPal \ + Template::Plugin::POSIX \ + Rose::URI \ + Safe + +export CPAN_MODULES_FORCE = \ + Class::DBI::Frozen::301 + +PGSQL_SERVER_DEBS_91 = \ + postgresql-9.1 \ + postgresql-contrib-9.1 \ + postgresql-plperl-9.1 \ + postgresql-server-dev-9.1 + +all: + make -f $(DIR)/Makefile.debian install_debs + make -f $(DIR)/Makefile.debian test_for_libdbi_pkg + make -f $(DIR)/Makefile.common install_cpan + make -f $(DIR)/Makefile.common install_cpan_force + make -f $(DIR)/Makefile.debian install_js_sm + make -f $(DIR)/Makefile.debian debian_sys_config + +install_postgres_server: + make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_91)" + +clean: + make -f $(DIR)/Makefile.common clean + make -f $(DIR)/Makefile.debian clean + +# vim:noet:sw=4:ts=4: -- 2.43.2