Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Main Support Categories > General Help
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.

General Help
All your general support questions for Ubuntu, Kubuntu, Edubuntu and Xubuntu.

 
Thread Tools Display Modes
Old May 28th, 2007   #1
MZaza
5 Cups of Ubuntu
 
Join Date: Mar 2007
Beans: 23
Ubuntu 7.04 Feisty Fawn
wine-doors .deb

Anyone have got or can build a debian package for the wine-doors?
__________________
Mustafa Zaza
MZaza is offline   Reply With Quote
Old June 4th, 2007   #2
tyn0r
First Cup of Ubuntu
 
Join Date: May 2007
Location: Chambery
Beans: 2
Ubuntu 8.10 Intrepid Ibex
Send a message via MSN to tyn0r
Re: wine-doors .deb

check dep :

Software Dependencies

* Wine
* cabextract, tar, gzip, bzip, unzip
* python-gnome2-desktop >= 2.16 (python rsvg support, Debian/Ubuntu package, might differ on other systems)
* python >= 2.4
* python2.4-cairo >= 1.2.0
* libcairo2 >= 1.2.4
* python-libxml2
* python-glade2


& just this

Code:
 
sudo apt-get install subversion
cd ~
mkdir .wine-doors
cd .wine-doors/
svn co http://www.wine-doors.org/svn/wine-doors/trunk wine-doors
cd wine-doors
python setup.py install
and have fun ==> App ==> Sys tool ==> Wine-doors

to unistall :

Code:
 
cd ~/.wine-doors/wine-doors
python setup.py uninstall

Last edited by tyn0r; June 4th, 2007 at 07:23 PM..
tyn0r is offline   Reply With Quote
Old June 4th, 2007   #3
MZaza
5 Cups of Ubuntu
 
Join Date: Mar 2007
Beans: 23
Ubuntu 7.04 Feisty Fawn
Re: wine-doors .deb

Thanks, that's useful.
__________________
Mustafa Zaza
MZaza is offline   Reply With Quote
Old June 4th, 2007   #4
YokoZar
Ubuntu Developer
 
YokoZar's Avatar
 
Join Date: Dec 2004
Beans: 498
Send a message via AIM to YokoZar
Re: wine-doors .deb

Quote:
Originally Posted by MZaza View Post
Anyone have got or can build a debian package for the wine-doors?
Hey, I make the Wine packages for Ubuntu. I'll be looking into building a wine-doors package next week.

So, yes, in time, you'll have an easy to install Wine-doors deb.
YokoZar is offline   Reply With Quote
Old June 4th, 2007   #5
MZaza
5 Cups of Ubuntu
 
Join Date: Mar 2007
Beans: 23
Ubuntu 7.04 Feisty Fawn
Re: wine-doors .deb

That will be great.
__________________
Mustafa Zaza
MZaza is offline   Reply With Quote
Old June 25th, 2007   #6
flawedprefect
5 Cups of Ubuntu
 
Join Date: Mar 2007
Beans: 32
Re: wine-doors .deb

Followed the steps, but at the last step, I get this:

paul@fiesty:~/.wine-doors$ cd wine-doors
paul@fiesty:~/.wine-doors/wine-doors$ python setup.py install
Traceback (most recent call last):
File "setup.py", line 112, in <module>
from preferences import preferences
File "./src/preferences.py", line 161, in <module>
preferences = Preferences()
File "./src/preferences.py", line 49, in __init__
self.Save()
File "./src/preferences.py", line 148, in Save
f = open( prefsfile, "w" )
IOError: [Errno 13] Permission denied: u'/home/paul/.wine/wine-doors/preferences.xml'
paul@fiesty:~/.wine-doors/wine-doors$
flawedprefect is offline   Reply With Quote
Old July 8th, 2007   #7
spottraining
5 Cups of Ubuntu
 
spottraining's Avatar
 
Join Date: Oct 2005
Beans: 30
Re: wine-doors .deb

Hi

I am getting also errors: All pyhon dependencies are installed.

Error:
Code:
suvi@lapakas:~/.wine-doors/wine-doors-0.1$ python setup.py installTraceback (most recent call last):
  File "setup.py", line 112, in <module>
    from preferences import preferences
  File "./src/preferences.py", line 161, in <module>
    preferences = Preferences()
  File "./src/preferences.py", line 48, in __init__
    self.Load()
  File "./src/preferences.py", line 128, in Load
    parser.parse( prefsfile )
  File "/usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py", line 109, in parse
    xmlreader.IncrementalParser.parse(self, source)
  File "/usr/lib/python2.5/site-packages/_xmlplus/sax/xmlreader.py", line 125, in parse
    self.close()
  File "/usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py", line 226, in close
    self.feed("", isFinal = 1)
  File "/usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py", line 220, in feed
    self._err_handler.fatalError(exc)
  File "/usr/lib/python2.5/site-packages/_xmlplus/sax/handler.py", line 38, in fatalError
    raise exception
xml.sax._exceptions.SAXParseException: /home/suvi/.wine/wine-doors/preferences.xml:5:0: no element found
suvi@lapakas:~/.wine-doors/wine-doors-0.1$
EDIT: Solved. I look to setup.py code and I find, that problem was with importing preferences to .wine/wine-doors. I have previously also tested wine-doors and there was already same folder and files. So - after deleting these - everything work fine.
__________________
The box saids Windows XP or better, so I installed Linux

Sorry about bad English

Last edited by spottraining; July 8th, 2007 at 01:58 AM..
spottraining is offline   Reply With Quote
Old July 9th, 2007   #8
atselby
Just Give Me the Beans!
 
Join Date: Mar 2007
Beans: 33
Ubuntu 7.04 Feisty Fawn
Re: wine-doors .deb

Quote:
Originally Posted by tyn0r View Post
check dep :

Software Dependencies

* Wine
* cabextract, tar, gzip, bzip, unzip
* python-gnome2-desktop >= 2.16 (python rsvg support, Debian/Ubuntu package, might differ on other systems)
* python >= 2.4
* python2.4-cairo >= 1.2.0
* libcairo2 >= 1.2.4
* python-libxml2
* python-glade2


& just this

Code:
 
sudo apt-get install subversion
cd ~
mkdir .wine-doors
cd .wine-doors/
svn co http://www.wine-doors.org/svn/wine-doors/trunk wine-doors
cd wine-doors
python setup.py install
and have fun ==> App ==> Sys tool ==> Wine-doors

to unistall :

Code:
 
cd ~/.wine-doors/wine-doors
python setup.py uninstall
Worked perfect, thanks.
atselby is offline   Reply With Quote
Old July 9th, 2007   #9
acejones
5 Cups of Ubuntu
 
Join Date: Jan 2005
Beans: 44
Re: wine-doors .deb

Code:
mike@acejones-nix:~/.wine-doors/wine-doors$ python setup.py install
Compressing and installing pack files
  ** Base Repo
  ** Libraries.Repo
  ** Applications.Repo
  ** Games Repo
Symlinking executable
Creating initial preferences
Checking dependencies
  wine . . .  Found
  cabextract . . .  Found
  tar . . .  Found
  orange . . .  Found
  ps . . .  Found
  pygtk . . .  Found
  pycairo . . .  Found
  rsvg . . .  Found
mike@acejones-nix:~/.wine-doors/wine-doors$
Nothing is listed under App --> System tools
acejones is offline   Reply With Quote
Old December 4th, 2007   #10
itsjustarumour
Ubuntu Extra Shot
 
Join Date: Dec 2006
Location: Oxford and Jyvaskyla
Beans: 359
Ubuntu 9.10 Karmic Koala
Re: wine-doors .deb

Quote:
Originally Posted by tyn0r View Post
check dep :

Software Dependencies

* Wine
* cabextract, tar, gzip, bzip, unzip
* python-gnome2-desktop >= 2.16 (python rsvg support, Debian/Ubuntu package, might differ on other systems)
* python >= 2.4
* python2.4-cairo >= 1.2.0
* libcairo2 >= 1.2.4
* python-libxml2
* python-glade2


& just this

Code:
 
sudo apt-get install subversion
cd ~
mkdir .wine-doors
cd .wine-doors/
svn co http://www.wine-doors.org/svn/wine-doors/trunk wine-doors
cd wine-doors
python setup.py install
and have fun ==> App ==> Sys tool ==> Wine-doors

to unistall :

Code:
 
cd ~/.wine-doors/wine-doors
python setup.py uninstall
I checked that all dependencies were present and correct, installed Wine-Doors, ran it from Applications>System Tools>Wine-Doors, and it opened up the box that told me I was running it for the first time. So far so good - I entered my details and ticked "Yes I have a valid Windows Licence", closed the box... and then when I try and open it again from Applications>System Tools>Wine-Doors nothing happened. I tried running it from terminal, which gives me:

Quote:
ian@COOLERMASTER:~$ wine-doors
Started logging session
Checking wine drive: /home/ian/.wine/




Traceback (most recent call last):
File "/home/ian/bin/wine-doors", line 104, in <module>
ui.winedoors = ui.WineDoorsGUI()
File "/home/ian/.local/share/wine-doors/src/ui.py", line 1004, in __init__
self.tree = PackTree( self.window['tv_packlist'], self.window )
File "/home/ian/.local/share/wine-doors/src/ui.py", line 538, in __init__
self.widget.set_model( self.CreateModel() )
File "/home/ian/.local/share/wine-doors/src/ui.py", line 898, in CreateModel
urllib.urlretrieve( pack['icon'], icon_file )
KeyError: 'icon'
ian@COOLERMASTER:~$
Any ideas?
__________________
Resuscitating metaphysics from the graveyard of logical positivism, in time for tea.
itsjustarumour is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:27 AM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry