From 1e9cb21c9ac353ca4c9d7db4449fb4f23f821997 Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@gmail.com>
Date: Tue, 11 Dec 2012 17:14:28 -0300
Subject: [PATCH] Bug 9267 - Ubuntu 12.04 install docs broken

Current install instructions are broken in the (1.6) step. On amd64
architectures it breaks the whole dependency tree, pulling i386 packages.

This patch replaces the 'dpkg --set-selections' combo and replacess some spaces
for tabs in one line.

This should be cherry-picked for other releases that have 12.04 install instructions
as the problem is related to multiarch.

Regards
To+

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
---
 INSTALL.ubuntu.12.04               |   37 ++++++++++++++---------------------
 install_misc/ubuntu.12.04.packages |    2 +-
 2 files changed, 16 insertions(+), 23 deletions(-)

diff --git a/INSTALL.ubuntu.12.04 b/INSTALL.ubuntu.12.04
index 8c1c0fe..3d9c701 100644
--- a/INSTALL.ubuntu.12.04
+++ b/INSTALL.ubuntu.12.04
@@ -106,24 +106,22 @@ sudo privileges, however some need to be run directly as root.
 
 1.5 Get Koha
 
-  There are three suggested ways to install Koha. If you will be
-  participating in Koha's development, the Download from Git
-  is the recommended way (See 1.5.1 below).
-  If you would like to skip some of these tedious tasks, visit
-  the following URL:
-  http://wiki.koha-community.org/wiki/Koha_3.8_on_Debian_Squeeze
-  If you will not be, then follow the Download from Tarball
-  instructions (See 1.5.2 below).
+  There are two ways to install Koha. The easy way is using Debian/Ubuntu
+  packages (check http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages
+  for further instructions).
+
+  The other way is installing from sources. You can get Koha's source
+  either using git (see 1.5.1) or downloading the stable release tarball.
 
   1.5.1 Download from Git
 
   Install Git:
-    $ sudo apt-get install git-core
+    $ sudo apt-get install git
 
-  Download Koha:
+  Download Koha (the 3.10.x branch):
     $ git clone git://git.koha-community.org/koha.git kohaclone
     $ cd kohaclone
-    $ git checkout -b myinstall origin
+    $ git checkout -b myinstall origin/3.10.x
 
   NOTE: for more information about Git, please see the Koha Git
         Usage Guide:
@@ -141,24 +139,19 @@ sudo privileges, however some need to be run directly as root.
 
   Determine the version and change directory:
     $ ls
-    koha-3.08.03  koha-lastest.tar.gz
-    $ cd koha-3.08.03
+    koha-3.10.00  koha-lastest.tar.gz
+    $ cd koha-3.10.00
 
 
 1.6 Install additional Ubuntu dependencies
 
   Several Koha dependencies have been conveniently packaged and
-  will be installed issuing the following commands:
-
-    $ sudo apt-get install dselect
-    $ sudo dpkg --set-selections < install_misc/ubuntu.packages
-    $ sudo dselect
+  will be installed issuing the following command:
 
-  Choose [I]nstall and accept packages to be installed and hit
-  return. Be patient. This may take a long time.
-  Choose [C]onfigure, [R]emove and [Q]uit until dselect has
-  completed.
+    $ sudo apt-get install `cat install_misc/ubuntu.12.04.packages | \
+            cut -f1 | grep -v '#' | grep -v -e '^$'`
 
+  Confirm that you want to install the required packages when prompted,
 
 1.7 Install Perl dependencies that aren't packaged
 
diff --git a/install_misc/ubuntu.12.04.packages b/install_misc/ubuntu.12.04.packages
index c8e8d5f..ebb8161 100644
--- a/install_misc/ubuntu.12.04.packages
+++ b/install_misc/ubuntu.12.04.packages
@@ -64,7 +64,7 @@ libdate-manip-perl			install
 libdatetime-perl			install
 libdatetime-event-ical-perl		install
 libdatetime-format-dateparse-perl			install
-libdatetime-format-ical-perl            install
+libdatetime-format-ical-perl		install
 libdatetime-format-mail-perl		install
 libdatetime-format-mysql-perl		install
 libdatetime-format-strptime-perl	install
-- 
1.7.2.5