From orion@cora.nwra.com  Tue Feb 12 21:52:35 2013
Received: (at 92) by bugs.x2go.org; 12 Feb 2013 20:52:35 +0000
Received: from mail.cora.nwra.com (mercury.cora.nwra.com [4.28.99.165])
	by ymir (Postfix) with ESMTPS id A62BB5DA6B
	for <92@bugs.x2go.org>; Tue, 12 Feb 2013 21:52:34 +0100 (CET)
Received: from barry.cora.nwra.com (barry.cora.nwra.com [10.10.20.7])
	(authenticated bits=0)
	by mail.cora.nwra.com (8.14.4/8.14.4) with ESMTP id r1CKqWh4019626
	(version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO)
	for <92@bugs.x2go.org>; Tue, 12 Feb 2013 13:52:32 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cora.nwra.com;
	s=default; t=1360702352;
	bh=2mAQr5itEimgHLDvSkMu+0tWfARYTrv7wJGnH9auwWI=;
	h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type;
	b=jINgaXQwWmio6uJQRgwSY14ig8Y3OQTCrpWSOg3IEOAovO4eYLVda6Zfy8G3ID54g
	 IbE72Z02FsaQeVC60BZBZVRVybkzYv8qtSLJNwbweDwmcU0u64rShv4iwin45yN4Fo
	 vCpGGFkhXZX7eZKg36QLCe3nbCozMklu90CLlNWc=
Message-ID: <511AAB90.1080804@cora.nwra.com>
Date: Tue, 12 Feb 2013 13:52:32 -0700
From: Orion Poplawski <orion@cora.nwra.com>
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2
MIME-Version: 1.0
To: 92@bugs.x2go.org
Subject: Final img setup.py fix
Content-Type: multipart/mixed;
 boundary="------------060604080302000708090909"

This is a multi-part message in MIME format.
--------------060604080302000708090909
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Version: 0.4.0.0
Tags: patch

I've attached a patch to fix the installation of the needed img directory, 
that got messed up copying from the windows part is seems.

It appears to install and run okay with this.

-- 
Orion Poplawski
Technical Manager                     303-415-9701 x222
NWRA, Boulder Office                  FAX: 303-415-9702
3380 Mitchell Lane                       orion@nwra.com
Boulder, CO 80301                   http://www.nwra.com

--------------060604080302000708090909
Content-Type: text/x-patch;
 name="pyhoca-gui-img.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="pyhoca-gui-img.patch"

diff --git a/setup.py b/setup.py
index c4d045f..eabb468 100755
--- a/setup.py
+++ b/setup.py
@@ -173,7 +173,7 @@ elif platform.system() == 'Linux':
     )
 
     icon_files = datafilelist('{prefix}/share/icons/PyHoca'.format(prefix=sys.prefix), r'icons_symlinked/PyHoca')
-    img_files = [("{prefix}/share/img".format(prefix=sys.prefix), glob(r'img\\*.*'))]
+    img_files = [("{prefix}/share/pyhoca/img".format(prefix=sys.prefix), glob('img/*.*'))]
     desktop_files = [
         ('{prefix}/share/applications'.format(prefix=sys.prefix), glob('desktop/*')),
         ('{prefix}/share/pixmaps'.format(prefix=sys.prefix), glob('pixmaps/*.svg')),

--------------060604080302000708090909--
