From: Chris Sharp Date: Sun, 26 Jan 2014 15:41:31 +0000 (-0500) Subject: Updating Makefile.install for Ubuntu 14.04. Removing lucid support. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4e38743329bb6edacb65d71277a9aa38adbbf0cf;p=working%2FOpenSRF.git Updating Makefile.install for Ubuntu 14.04. Removing lucid support. Signed-off-by: Chris Sharp --- diff --git a/src/extras/Makefile.install b/src/extras/Makefile.install index 0d24677..9d0c335 100644 --- a/src/extras/Makefile.install +++ b/src/extras/Makefile.install @@ -4,8 +4,8 @@ # # Makefile to install prerequisites for OpenSRF # -# Currently supports Debian (wheezy/squeeze), Ubuntu (lucid/precise) -# and Fedora (16). +# Currently supports Debian (wheezy/squeeze), Ubuntu (precise/trusy) +# and Fedora (19). # # Installs Perl prereqs, libjs with Perl wrapper # @@ -14,10 +14,10 @@ # - or - # make -f Makefile.install debian-squeeze # - or - -# make -f Makefile.install ubuntu-lucid -# - or - # make -f Makefile.install ubuntu-precise # - or - +# make -f Makefile.install ubuntu-trusty +# - or - # make -f Makefile.install fedora # # --------------------------------------------------------------------- @@ -161,12 +161,13 @@ EXTRA_DEBS_WHEEZY = \ libxml-libxslt-perl \ libncurses5-dev -EXTRA_DEBS_UBUNTU_LUCID = \ +EXTRA_DEBS_UBUNTU_PRECISE = \ libmemcached-dev\ libxml-libxml-perl \ - libxml-libxslt-perl + libxml-libxslt-perl \ + ncurses-dev -EXTRA_DEBS_UBUNTU_PRECISE = \ +EXTRA_DEBS_UBUNTU_TRUSTY = \ libmemcached-dev\ libxml-libxml-perl \ libxml-libxslt-perl \ @@ -186,10 +187,10 @@ generic_debian: install_debs debian_sys_config fedora: install_fedora_rpms -ubuntu-lucid: generic_ubuntu lucid ubuntu-precise: generic_ubuntu precise -lucid: install_extra_debs install_extra_debs_lucid +ubuntu-trusty: generic_ubuntu trusty precise: install_extra_debs install_extra_debs_precise +trusty: install_extra_debs install_extra_debs_trusty generic_ubuntu: install_debs debian_sys_config # ------------------------------------------------------------------ @@ -220,9 +221,6 @@ install_extra_debs_squeeze: install_extra_debs $(APT_TOOL) install $(EXTRA_DEBS_SQUEEZE) # Install even more packaged dependencies on modern distros -install_extra_debs_lucid: - $(APT_TOOL) install $(EXTRA_DEBS_UBUNTU_LUCID) - install_extra_debs_precise: $(APT_TOOL) install $(EXTRA_DEBS_UBUNTU_PRECISE)