Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
winex-cvs : socket error
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Polskie forum (Polish)
View previous topic :: View next topic  
Author Message
fallow
Bodhisattva
Bodhisattva


Joined: 08 Jan 2004
Posts: 2208
Location: Poland

PostPosted: Thu Apr 29, 2004 4:31 pm    Post subject: winex-cvs : socket error Reply with quote

hello :)

naszlo mnie ostatnio na winexa
zcvs`owalem sobie winex`a ...po skompilowaniu
i zainstalowaniu przy probie uruchamienia dostaje komunikat :

Code:

wine: lstat /home/fallow/.wine/wineserver-Enterprise/socket : No such file or directory


nie wiem jak to ugryzc , podstawialem tam rozne rzeczy ale nic , szperam po dokumentacji ale jak do tej pory jeszcze nic nie znalazlem :)
moze ktos juz mial ten problem ? :)

pozdro :)
_________________
"Time is a companion that goes with us on a journey. It reminds us to cherish each moment, because it will never come again. What we leave behind is not as important as how we have lived" J-L. Picard ;)
Back to top
View user's profile Send private message
raaf
Apprentice
Apprentice


Joined: 31 Dec 2003
Posts: 293
Location: Kraków

PostPosted: Thu Apr 29, 2004 5:36 pm    Post subject: Reply with quote

nie pamietam juz teraz, ale kiedys tez kompilowalem winex'a z cvs i mialem podobny problem, o ile pamietam to trzeba ten plik (czy katalog) kasowac za kazdym razem przed uruchomieniem winex. nie pamietam dokladnie jak to bylo bo to bylo ponad pol roku temu. w kazdym razie wkurzylem sie i kupilem winex i teraz nie narzekam, warcraft dziala bez zarzutu. poza tym taki kompilowany z cvs winex instaluje sie na miejsce wine wiec nie da sie miec wine i winex_cvs na raz (ale moze sie myle, jak mowie dawno temu sie tym bawilem).

pozdrawiam
Back to top
View user's profile Send private message
fallow
Bodhisattva
Bodhisattva


Joined: 08 Jan 2004
Posts: 2208
Location: Poland

PostPosted: Fri Apr 30, 2004 10:09 am    Post subject: Reply with quote

jesli winex pozwoli mi na to zebym gral pod linuxem w championship managera , to tez bym moze kupil:) jednak najpierw cche zobaczyc :)
na wine emulacja nie byla zbyt udana...

oki , kiedy skasuje ten katalog to ...
Code:

wine: chdir to /home/fallow/.wine/wineserver-Enterprise : No such file or directory


skasowanie katalogu .wine tez nic nie daje ...:(

pozdro :)
_________________
"Time is a companion that goes with us on a journey. It reminds us to cherish each moment, because it will never come again. What we leave behind is not as important as how we have lived" J-L. Picard ;)
Back to top
View user's profile Send private message
raaf
Apprentice
Apprentice


Joined: 31 Dec 2003
Posts: 293
Location: Kraków

PostPosted: Fri Apr 30, 2004 2:26 pm    Post subject: Reply with quote

a zobacz na www.frankscorner.org, tam jest cos na temat wine i winex.
Back to top
View user's profile Send private message
fallow
Bodhisattva
Bodhisattva


Joined: 08 Jan 2004
Posts: 2208
Location: Poland

PostPosted: Sat May 01, 2004 10:20 am    Post subject: Reply with quote

dzieki za link , przeczytalem "wszystko co tam bylo" ale nie spotykam sie nigdzie z tym "glupim" problemem , szukam dalej na necie , moze w koncu cos znajde :)

pozdro:)
_________________
"Time is a companion that goes with us on a journey. It reminds us to cherish each moment, because it will never come again. What we leave behind is not as important as how we have lived" J-L. Picard ;)
Back to top
View user's profile Send private message
fallow
Bodhisattva
Bodhisattva


Joined: 08 Jan 2004
Posts: 2208
Location: Poland

PostPosted: Thu May 06, 2004 1:55 pm    Post subject: Reply with quote

oki , przyczyna byla innej natury :

na gentoo trzeba miec miec wersja winexa cvs z oblusga pthreads .
teraz dziala juz ok :)
zalatwia to ten skrypt jak by ktos chcial :

Code:

#!/bin/bash

export LauncherVer="3.30"

# Configuration
#########################################################

# Vars
export CompileRootDir="$HOME/temp/cvswinex"
export ErrorLogFile=""
export ConfigurePrefix="/usr/lib/cvswinex"
export ConfigureOptions="--enable-opengl --with-x --enable-pthreads"
export AlwaysRecompile="1"
export ScriptName="cvswinex"
export ConfigDirName=".cvswinex"

export GetWineXLicense="http://www.transgaming.com/license.php?source=1"

export StripBinaries="0" # change to 1 to strip binaries. Disables debugging tho
export PackSource="1"

export CVSPasswordGuess="cvs"
export CVSCheckOutDir="winex"
export OldCVSCheckOutDir="wine"
export CVSoptions="-d :pserver:cvs@cvs.transgaming.org:/cvsroot -z 3 co"
#export DisableCVSrootCheck="1" # use if CVSoptions CVSroot has a space in it
export WineExecName="wine"

export ShowTips="1"

#User install
#export UserOnlyInstall="1"

# Helperscript stuff ... do not edit
#########################################################

if test "$1" = "proxy"
then
   echo "Enter proxy (eg: proxy.pandora.be:8080):"
   read http_proxy
   echo "$http_proxy" > $HOME/.GetWineXproxy && echo "info stored ..."
   exit
fi
http_proxy=`cat $HOME/.GetWineXproxy 2>/dev/null`
test -n "$http_proxy" && export http_proxy

Upgrade="0"
if test "$1" = "upgrade"
then
   echo "Upgrading Helper script ..."
   Upgrade="1"
   shift
fi

export GetWineXName=`basename $0`

function CheckOK ()
{
   if test "$Upgrade" = "1"
   then
      if ! rm -f "$GetWineXFile"
      then
         echo -e "Could not remove $GetWineXFile\nAborting..."
         exit
      fi
   elif test -e "$GetWineXFile"
   then
      Test=`tail -n 2 "$GetWineXFile"|grep "#end"`
      if test -z "$Test"
      then
         echo "Helperscript incomplete, getting new"
         if ! rm -f "$GetWineXFile"
         then
            echo -e "Could not remove $GetWineXFile\nAborting..."
            exit
         fi
      fi
   fi
}

GetWineXFile=`which GetWineX 2>/dev/null` ;CheckOK
if test -e "$GetWineXFile"
then
   GetWineX $@
   exit
fi
GetWineXFile="$HOME/bin/GetWineX" ;CheckOK
if test -e $HOME/bin/GetWineX
then
   $HOME/bin/GetWineX $@
   exit
fi
GetWineXFile="./GetWineX" ;CheckOK
if test -e ./GetWineX
then
    ./GetWineX $@
else
   mkdir $HOME/bin/ >/dev/null 2>&1
   cd $HOME/bin/
   echo -e "\n\nGetting helper script ... please wait\n"
   if wget http://ting.homeunix.org/GetWineX
   then
      chmod +x GetWineX
      ./GetWineX $@
   else
      echo -e "\n\nCouldn't download .. Try again, and/or contact ElmerFudd"
      echo "For manual download:"
      echo "  Goto http://ting.homeunix.org/cvs_wine/changelog.html"
      echo "  Download GetWineX, using the link around the top"
      echo -e "  Put it in <home>/bin/ and chmod +x\n"
      echo -e "FEATURE:"
      echo -e "  If you are behind a proxy, try this:"
      echo -e "  $GetWineXName proxy"
      echo -e "  after proxy info is entered, just run again as normal.\n"
      rm -f GetWineX
   fi
fi


pozdro :)
_________________
"Time is a companion that goes with us on a journey. It reminds us to cherish each moment, because it will never come again. What we leave behind is not as important as how we have lived" J-L. Picard ;)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Polskie forum (Polish) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum