Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-06 Thread Benoît Minisini
Le 06/10/2012 13:54, Willy Raets a écrit :
 On Sat, 2012-10-06 at 01:22 +0300, Jussi Lahtinen wrote:
 Latest revision doesn't compile.
 But in case you are using another revision (5219 or older), then try
 to recompile gambas3.gambas.

 Jussi

 Hi Jussi,

 Thanks for answering but I think the problem lies elsewhere
 I found this online:

 -- quote --

 However when trying to run Gambas it came back with an error gbr3: no
 project file in usr/bin/gambas3 After some investigation this was found
 to be due to Gambas3 looking in the /usr/ directory for its files when
 they were actually installed in /usr/local/. I copied all the Gambas
 files and directories from /usr/local/ to /usr/ and then everything
 worked .
 This looks like a path problem but the path environment variable was set
 to include both locations.

 -- end quote --

 This guy had Gambas 3 installed from official repo then removed and then
 when installing from svn run into this.

 I had Gambas 3 installed from PPA Kendek.
 I did:
 sudo apt-get remove gambas3
 sudo apt-get autoremove
 before I started installing Gambas 3.3.2 from download file Gambas
 website. I run into the same problem.

 In both cases Gambas 3 was installed before through repository and
 remove afterwards, before the configure/make/make install process
 In both cases this gbr3 error shows up.

 Seems that after removing repo install from system, the path of Gambas 3
 stays with /usr/ instead of /usr/local/

 Is this a bug or bad packaging?
 How do I fix this without having to copy /usr/local/ to /usr/ as this
 guy above did to fix it?


 Willy


When you get the error message, what does 'which gbr3' return?

-- 
Benoît Minisini

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-06 Thread Willy Raets
On Sat, 2012-10-06 at 15:11 +0200, Benoît Minisini wrote
 
 When you get the error message, what does 'which gbr3' return?
 
Ok, in short (see more details in previous posts)

Previous install was from PPA Kendek
I removed it completely
sudo apt-get remove gambas3
sudo apt-get autoremove

Next installed download archive from website Gambas
After:
sudo make install
I do:
gambas3
error message given is:
gbr3: no project file in '/usr/local/bin/gambas3'

Ubuntu 12.04 - Unity desktop - Gambas 3.3.2 from website (download)

Willy





--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-06 Thread Willy Raets
On Sat, 2012-10-06 at 19:03 +0200, Willy Raets wrote:
 On Sat, 2012-10-06 at 15:11 +0200, Benoît Minisini wrote
  
  When you get the error message, what does 'which gbr3' return?
  
 Ok, in short (see more details in previous posts)
 
 Previous install was from PPA Kendek
 I removed it completely
 sudo apt-get remove gambas3
 sudo apt-get autoremove
 
 Next installed download archive from website Gambas
 After:
 sudo make install
 I do:
 gambas3
 error message given is:
 gbr3: no project file in '/usr/local/bin/gambas3'
 
 Ubuntu 12.04 - Unity desktop - Gambas 3.3.2 from website (download)
 
 Willy

Just checked:
The /usr/bin/ still has a gbr3 and gbx3 from PPA install although
gambas3 was removed!!
I had NO gambas3 applications installed, so there is no reason to leave
some gambas3 remains when removing gambas3.

Willy





--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-06 Thread Willy Raets
On Sat, 2012-10-06 at 19:43 +0200, Willy Raets wrote:
 On Sat, 2012-10-06 at 19:03 +0200, Willy Raets wrote:
  On Sat, 2012-10-06 at 15:11 +0200, Benoît Minisini wrote
   
   When you get the error message, what does 'which gbr3' return?
   
  Ok, in short (see more details in previous posts)
  
  Previous install was from PPA Kendek
  I removed it completely
  sudo apt-get remove gambas3
  sudo apt-get autoremove
  
  Next installed download archive from website Gambas
  After:
  sudo make install
  I do:
  gambas3
  error message given is:
  gbr3: no project file in '/usr/local/bin/gambas3'
  
  Ubuntu 12.04 - Unity desktop - Gambas 3.3.2 from website (download)
  
  Willy
 
 Just checked:
 The /usr/bin/ still has a gbr3 and gbx3 from PPA install although
 gambas3 was removed!!
 I had NO gambas3 applications installed, so there is no reason to leave
 some gambas3 remains when removing gambas3.
 
 Willy
 
Solved the probem by
1. Removing the remainders of PPA install being (in my case):
/usr/bin/gbr3 and gbx3
/usr/lib/gambas3
/usr/share/gambas3
2. reconf-all, configure -C, make, make install, gambas3

All runs fine now

Willy



--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-05 Thread Willy Raets
Ubuntu 12.04 LTS - Unity Desktop
Installation: Download from Gambas website Gambas 3.3.2
Dependencies installed:

sudo apt-get install build-essential autoconf libbz2-dev libfbclient2
libmysqlclient-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev
libglib2.0-dev libgtk2.0-dev libldap2-dev libcurl4-gnutls-dev
libgtkglext1-dev libpcre3-dev libsdl-sound1.2-dev libsdl-mixer1.2-dev
libsdl-image1.2-dev libsage-dev libxml2-dev libxslt1-dev libbonobo2-dev
libcos4-dev libomniorb4-dev librsvg2-dev libpoppler-dev
libpoppler-glib-dev libpoppler-private-dev libasound2-dev libesd0-dev
libdirectfb-dev libaa1-dev libxtst-dev libffi-dev kdelibs5-dev
firebird2.1-dev libqt4-dev libglew1.5-dev libimlib2-dev libv4l-dev
libsdl-ttf2.0-dev libgnome-keyring-dev libgdk-pixbuf2.0-dev
linux-libc-dev libgsl0-dev libncurses5-dev libgstreamer0.10-dev
libgstreamer-plugins-base0.10-dev libcairo2-dev libgmime-2.6-dev

./reconf-all - no errors
./configure -C - no errors - gb.jit disabled (no LLVM 3.1 installed)
make - no errors
sudo make install - no errors
gambas3 - gbr3: no project file in '/usr/local/bin/gambas3'.

ls -al   - from directory /usr/local/bin/

drwxr-xr-x  2 root root4096 Oct  5 22:25 .
drwxr-xr-x 10 root root4096 Aug 18 00:05 ..
lrwxrwxrwx  1 root root  14 Oct  5 22:25 gambas3 - gambas3.gambas
-rwxr-xr-x  1 root root 3720131 Oct  5 22:25 gambas3.gambas
-rwxr-xr-x  1 root root   94507 Oct  5 22:23 gba3
-rwxr-xr-x  1 root root  483506 Oct  5 22:23 gbc3
-rwxr-xr-x  1 root root   90689 Oct  5 22:23 gbi3
lrwxrwxrwx  1 root root   4 Oct  5 22:23 gbr3 - gbx3
lrwxrwxrwx  1 root root  11 Oct  5 22:25 gbs3 - gbs3.gambas
-rwxr-xr-x  1 root root   25204 Oct  5 22:25 gbs3.gambas
lrwxrwxrwx  1 root root  11 Oct  5 22:25 gbw3 - gbs3.gambas
-rwxr-xr-x  1 root root 1605070 Oct  5 22:23 gbx3

From a google search I found that this has happened before to someone
else and was posted here on the mailing list.
But there was no real answer except a question from Jussi:

--quote--
Did you install binaries from some repository? Or did you compile from
sources?

I would guess you installed incorrectly packaged binaries.

Jussi 
--end quote--

In my case - no binaries from some repository but download from Gambas
website.

Installed exactly the same in Linux Mint 13 - Mate desktop - Ubuntu
12.04 LTS based - no problem there!!

Someone know what is happening?

Thanks,

Willy



--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-10-05 Thread Jussi Lahtinen
Latest revision doesn't compile.
But in case you are using another revision (5219 or older), then try to
recompile gambas3.gambas.

Jussi



On Sat, Oct 6, 2012 at 12:04 AM, Willy Raets wi...@earthshipbelgium.bewrote:

 Ubuntu 12.04 LTS - Unity Desktop
 Installation: Download from Gambas website Gambas 3.3.2
 Dependencies installed:

 sudo apt-get install build-essential autoconf libbz2-dev libfbclient2
 libmysqlclient-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev
 libglib2.0-dev libgtk2.0-dev libldap2-dev libcurl4-gnutls-dev
 libgtkglext1-dev libpcre3-dev libsdl-sound1.2-dev libsdl-mixer1.2-dev
 libsdl-image1.2-dev libsage-dev libxml2-dev libxslt1-dev libbonobo2-dev
 libcos4-dev libomniorb4-dev librsvg2-dev libpoppler-dev
 libpoppler-glib-dev libpoppler-private-dev libasound2-dev libesd0-dev
 libdirectfb-dev libaa1-dev libxtst-dev libffi-dev kdelibs5-dev
 firebird2.1-dev libqt4-dev libglew1.5-dev libimlib2-dev libv4l-dev
 libsdl-ttf2.0-dev libgnome-keyring-dev libgdk-pixbuf2.0-dev
 linux-libc-dev libgsl0-dev libncurses5-dev libgstreamer0.10-dev
 libgstreamer-plugins-base0.10-dev libcairo2-dev libgmime-2.6-dev

 ./reconf-all - no errors
 ./configure -C - no errors - gb.jit disabled (no LLVM 3.1 installed)
 make - no errors
 sudo make install - no errors
 gambas3 - gbr3: no project file in '/usr/local/bin/gambas3'.

 ls -al   - from directory /usr/local/bin/

 drwxr-xr-x  2 root root4096 Oct  5 22:25 .
 drwxr-xr-x 10 root root4096 Aug 18 00:05 ..
 lrwxrwxrwx  1 root root  14 Oct  5 22:25 gambas3 - gambas3.gambas
 -rwxr-xr-x  1 root root 3720131 Oct  5 22:25 gambas3.gambas
 -rwxr-xr-x  1 root root   94507 Oct  5 22:23 gba3
 -rwxr-xr-x  1 root root  483506 Oct  5 22:23 gbc3
 -rwxr-xr-x  1 root root   90689 Oct  5 22:23 gbi3
 lrwxrwxrwx  1 root root   4 Oct  5 22:23 gbr3 - gbx3
 lrwxrwxrwx  1 root root  11 Oct  5 22:25 gbs3 - gbs3.gambas
 -rwxr-xr-x  1 root root   25204 Oct  5 22:25 gbs3.gambas
 lrwxrwxrwx  1 root root  11 Oct  5 22:25 gbw3 - gbs3.gambas
 -rwxr-xr-x  1 root root 1605070 Oct  5 22:23 gbx3

 From a google search I found that this has happened before to someone
 else and was posted here on the mailing list.
 But there was no real answer except a question from Jussi:

 --quote--
 Did you install binaries from some repository? Or did you compile from
 sources?

 I would guess you installed incorrectly packaged binaries.

 Jussi
 --end quote--

 In my case - no binaries from some repository but download from Gambas
 website.

 Installed exactly the same in Linux Mint 13 - Mate desktop - Ubuntu
 12.04 LTS based - no problem there!!

 Someone know what is happening?

 Thanks,

 Willy




 --
 Don't let slow site performance ruin your business. Deploy New Relic APM
 Deploy New Relic app performance management and know exactly
 what is happening inside your Ruby, Python, PHP, Java, and .NET app
 Try New Relic at no cost today and get our sweet Data Nerd shirt too!
 http://p.sf.net/sfu/newrelic-dev2dev
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-09-27 Thread abdurrahman ulusoy
error;  
   gbr3: no project file in '/usr/local/bin/gambas3'.


ulusoy$ gambas3
gbr3: no project file in '/usr/local/bin/gambas3'.

ulusoy$ cd /usr/local/bin/

ulusoy /usr/local/bin$ dir
bugpointgbs3.gambas llvm-config llvm-mc       llvm-stress
gambas3gbw3 llvm-cov llvm-nm       llvm-stub
gambas3.gambasgbx3 llvm-diff llvm-objdump  llvm-tblgen
gba3llc llvm-dis llvm-prof     macho-dump
gbc3lli llvm-dwarfdump  llvm-ranlib   opt
gbi3llvm-ar llvm-extract llvm-readobj
gbr3llvm-as llvm-ld llvm-rtdyld
gbs3llvm-bcanalyzer  llvm-link llvm-size
ulusoy@ulusoy-HP-G62:/usr/local/bin$ 


gambas3 version: 3.3.1
Distribution:  Ubuntu 12.04.1 LTS 32 bit + Xubuntu lubuntu kubuntu
GUI component: ubuntu - xfce- lxde - QT4

 
Abdurrahman ULUSOY
Ulusoy Mekatronik
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2012-09-27 Thread Jussi Lahtinen
Did you install binaries from some repository? Or did you compile from
sources?

I would guess you installed incorrectly packaged binaries.

Jussi




On Thu, Sep 27, 2012 at 2:39 PM, abdurrahman ulusoy uluso...@yahoo.comwrote:

 error;
gbr3: no project file in '/usr/local/bin/gambas3'.


 ulusoy$ gambas3
 gbr3: no project file in '/usr/local/bin/gambas3'.

 ulusoy$ cd /usr/local/bin/

 ulusoy /usr/local/bin$ dir
 bugpointgbs3.gambas llvm-config llvm-mc   llvm-stress
 gambas3gbw3 llvm-cov llvm-nm   llvm-stub
 gambas3.gambasgbx3 llvm-diff llvm-objdump  llvm-tblgen
 gba3llc llvm-dis llvm-prof macho-dump
 gbc3lli llvm-dwarfdump  llvm-ranlib   opt
 gbi3llvm-ar llvm-extract llvm-readobj
 gbr3llvm-as llvm-ld llvm-rtdyld
 gbs3llvm-bcanalyzer  llvm-link llvm-size
 ulusoy@ulusoy-HP-G62:/usr/local/bin$


 gambas3 version: 3.3.1
 Distribution:  Ubuntu 12.04.1 LTS 32 bit + Xubuntu lubuntu kubuntu
 GUI component: ubuntu - xfce- lxde - QT4


 Abdurrahman ULUSOY
 Ulusoy Mekatronik

 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://ad.doubleclick.net/clk;258768047;13503038;j?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3.gambas'

2010-07-17 Thread Werner
On 18/07/10 01:30, Doriano Blengino wrote:
 Hi,

 went to gambas.svn.sourceforge.net, hit the Download GNU tarball, this 
 time it worked, put all on the usb stick and copied it to the home 
 machine. Updated libtool and autoconf/automake, and managed to compile. 
 A few file contained a single line link ../blahblahblah which gave 
 errors. I presume it's m4 stuff and I don't know why it didn't work, 
 anyway I corrected by hand and obtained a good compilation.

 But when I try to launch gambas3.gambas I obtain no project file . 
 The same happens if by hand I issue things like gbr3 
 /usr/local/bin/gambas3.gambas and so on. I tried to debug gbx3/gbr3, 
 but got lost.

 There was a thread on this subject, but I can not see it right now. What 
 is the problem?

 Regards,
 Doriano
   
The boss said we need qt4 webkit +devel. It worked for Matti.

Werner


--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Dimitris Anogiatis
Hey Matti

try starting gambas from the terminal by typing

/usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas

it should run the Gambas IDE then.

I hope this helps

Regards
Dimitris

On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:

 Once again, I tried to install Gambas3 on my SuSe 11.2.
 Got rev 3025 from svn, and this time appearently the installation ran
 without
 errors.
 But when I try to start gambas3, I get the message above.

 What now? I found one thread in the mail archives, but this looks like
 there was
 something wrong in the revision.

 In /usr/local/bin/gambas3 I have the files:
 gambas3
 gambas3.gambas
 gba3
 gbc3
 gbi3
 gbr3
 gbs3
 gbs3.gambas
 gbw3
 gbx3

 Thanks for help
 Matti


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Matti
Hi Dimitri,

there is no directory /usr/local/bin/gambas3/ here.
And when I try any commands in /usr/local/bin/, I get messages like ERROR: #35:
Cannot open file '.': No such device
0: ? or gbr3: no project file in 'gambas3.gambas'.

Matti

Am 05.07.2010 07:59, schrieb Dimitris Anogiatis:
 Hey Matti
 
 try starting gambas from the terminal by typing
 
 /usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas
 
 it should run the Gambas IDE then.
 
 I hope this helps
 
 Regards
 Dimitris
 
 On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:
 
 Once again, I tried to install Gambas3 on my SuSe 11.2.
 Got rev 3025 from svn, and this time appearently the installation ran
 without
 errors.
 But when I try to start gambas3, I get the message above.

 What now? I found one thread in the mail archives, but this looks like
 there was
 something wrong in the revision.

 In /usr/local/bin/gambas3 I have the files:
 gambas3
 gambas3.gambas
 gba3
 gbc3
 gbi3
 gbr3
 gbs3
 gbs3.gambas
 gbw3
 gbx3

 Thanks for help
 Matti


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
 

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Dimitris Anogiatis
Matti,

first go to /usr/local/bin

then type gbr3 and then press enter

If you get something like this:

gbr3: no archive file

then gambas is located in /usr/local/bin/

and you can try this

gbr3 gambas3.gambas
(since you're already in /usr/local/bin/)

I hope this takes you a bit further

Regards,
Dimitris


On Mon, Jul 5, 2010 at 12:17 AM, Matti math.e...@t-online.de wrote:

 Hi Dimitri,

 there is no directory /usr/local/bin/gambas3/ here.
 And when I try any commands in /usr/local/bin/, I get messages like ERROR:
 #35:
 Cannot open file '.': No such device
 0: ? or gbr3: no project file in 'gambas3.gambas'.

 Matti

 Am 05.07.2010 07:59, schrieb Dimitris Anogiatis:
  Hey Matti
 
  try starting gambas from the terminal by typing
 
  /usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas
 
  it should run the Gambas IDE then.
 
  I hope this helps
 
  Regards
  Dimitris
 
  On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:
 
  Once again, I tried to install Gambas3 on my SuSe 11.2.
  Got rev 3025 from svn, and this time appearently the installation ran
  without
  errors.
  But when I try to start gambas3, I get the message above.
 
  What now? I found one thread in the mail archives, but this looks like
  there was
  something wrong in the revision.
 
  In /usr/local/bin/gambas3 I have the files:
  gambas3
  gambas3.gambas
  gba3
  gbc3
  gbi3
  gbr3
  gbs3
  gbs3.gambas
  gbw3
  gbx3
 
  Thanks for help
  Matti
 
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Fabien Bodard
i think there is a problem on your PATH environment variable

Just add

export PATH=$PATH:/usr/local/bin
in ~/.bashrc



2010/7/5 Dimitris Anogiatis dos...@gmail.com:
 Matti,

 first go to /usr/local/bin

 then type gbr3 and then press enter

 If you get something like this:

 gbr3: no archive file

 then gambas is located in /usr/local/bin/

 and you can try this

 gbr3 gambas3.gambas
 (since you're already in /usr/local/bin/)

 I hope this takes you a bit further

 Regards,
 Dimitris


 On Mon, Jul 5, 2010 at 12:17 AM, Matti math.e...@t-online.de wrote:

 Hi Dimitri,

 there is no directory /usr/local/bin/gambas3/ here.
 And when I try any commands in /usr/local/bin/, I get messages like ERROR:
 #35:
 Cannot open file '.': No such device
 0: ? or gbr3: no project file in 'gambas3.gambas'.

 Matti

 Am 05.07.2010 07:59, schrieb Dimitris Anogiatis:
  Hey Matti
 
  try starting gambas from the terminal by typing
 
  /usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas
 
  it should run the Gambas IDE then.
 
  I hope this helps
 
  Regards
  Dimitris
 
  On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:
 
  Once again, I tried to install Gambas3 on my SuSe 11.2.
  Got rev 3025 from svn, and this time appearently the installation ran
  without
  errors.
  But when I try to start gambas3, I get the message above.
 
  What now? I found one thread in the mail archives, but this looks like
  there was
  something wrong in the revision.
 
  In /usr/local/bin/gambas3 I have the files:
  gambas3
  gambas3.gambas
  gba3
  gbc3
  gbi3
  gbr3
  gbs3
  gbs3.gambas
  gbw3
  gbx3
 
  Thanks for help
  Matti
 
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Matti
No, same result as before:
math...@mattitux:~ cd /usr/local/bin
math...@mattitux:/usr/local/bin gbr3
ERROR: #35: Cannot open file '.': No such device
0: ?
math...@mattitux:/usr/local/bin gbr3 gambas3.gambas
gbr3: no project file in 'gambas3.gambas'.



Am 05.07.2010 08:36, schrieb Dimitris Anogiatis:
 Matti,
 
 first go to /usr/local/bin
 
 then type gbr3 and then press enter
 
 If you get something like this:
 
 gbr3: no archive file
 
 then gambas is located in /usr/local/bin/
 
 and you can try this
 
 gbr3 gambas3.gambas
 (since you're already in /usr/local/bin/)
 
 I hope this takes you a bit further
 
 Regards,
 Dimitris
 
 
 On Mon, Jul 5, 2010 at 12:17 AM, Matti math.e...@t-online.de wrote:
 
 Hi Dimitri,

 there is no directory /usr/local/bin/gambas3/ here.
 And when I try any commands in /usr/local/bin/, I get messages like ERROR:
 #35:
 Cannot open file '.': No such device
 0: ? or gbr3: no project file in 'gambas3.gambas'.

 Matti

 Am 05.07.2010 07:59, schrieb Dimitris Anogiatis:
 Hey Matti

 try starting gambas from the terminal by typing

 /usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas

 it should run the Gambas IDE then.

 I hope this helps

 Regards
 Dimitris

 On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:

 Once again, I tried to install Gambas3 on my SuSe 11.2.
 Got rev 3025 from svn, and this time appearently the installation ran
 without
 errors.
 But when I try to start gambas3, I get the message above.

 What now? I found one thread in the mail archives, but this looks like
 there was
 something wrong in the revision.

 In /usr/local/bin/gambas3 I have the files:
 gambas3
 gambas3.gambas
 gba3
 gbc3
 gbi3
 gbr3
 gbs3
 gbs3.gambas
 gbw3
 gbx3

 Thanks for help
 Matti



 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
 

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-05 Thread Fabien Bodard
2010/7/5 Fabien Bodard gambas...@gmail.com:
 i think there is a problem on your PATH environment variable

 Just add

 export PATH=$PATH:/usr/local/bin
 in ~/.bashrc

and open a new console after



 2010/7/5 Dimitris Anogiatis dos...@gmail.com:
 Matti,

 first go to /usr/local/bin

 then type gbr3 and then press enter

 If you get something like this:

 gbr3: no archive file

 then gambas is located in /usr/local/bin/

 and you can try this

 gbr3 gambas3.gambas
 (since you're already in /usr/local/bin/)

 I hope this takes you a bit further

 Regards,
 Dimitris


 On Mon, Jul 5, 2010 at 12:17 AM, Matti math.e...@t-online.de wrote:

 Hi Dimitri,

 there is no directory /usr/local/bin/gambas3/ here.
 And when I try any commands in /usr/local/bin/, I get messages like ERROR:
 #35:
 Cannot open file '.': No such device
 0: ? or gbr3: no project file in 'gambas3.gambas'.

 Matti

 Am 05.07.2010 07:59, schrieb Dimitris Anogiatis:
  Hey Matti
 
  try starting gambas from the terminal by typing
 
  /usr/local/bin/gambas3/gbr3 /usr/local/bin/gambas3/gambas3.gambas
 
  it should run the Gambas IDE then.
 
  I hope this helps
 
  Regards
  Dimitris
 
  On Sun, Jul 4, 2010 at 11:21 PM, Matti math.e...@t-online.de wrote:
 
  Once again, I tried to install Gambas3 on my SuSe 11.2.
  Got rev 3025 from svn, and this time appearently the installation ran
  without
  errors.
  But when I try to start gambas3, I get the message above.
 
  What now? I found one thread in the mail archives, but this looks like
  there was
  something wrong in the revision.
 
  In /usr/local/bin/gambas3 I have the files:
  gambas3
  gambas3.gambas
  gba3
  gbc3
  gbi3
  gbr3
  gbs3
  gbs3.gambas
  gbw3
  gbx3
 
  Thanks for help
  Matti
 
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 
 
 --
  This SF.net email is sponsored by Sprint
  What will you do first with EVO, the first 4G phone?
  Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 


 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

 --
 This SF.net email is sponsored by Sprint
 What will you do first with EVO, the first 4G phone?
 Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'

2010-07-04 Thread Matti
Once again, I tried to install Gambas3 on my SuSe 11.2.
Got rev 3025 from svn, and this time appearently the installation ran without
errors.
But when I try to start gambas3, I get the message above.

What now? I found one thread in the mail archives, but this looks like there was
something wrong in the revision.

In /usr/local/bin/gambas3 I have the files:
gambas3
gambas3.gambas
gba3
gbc3
gbi3
gbr3
gbs3
gbs3.gambas
gbw3
gbx3

Thanks for help
Matti

--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] gbr3: no project file in '/usr/local/bin/gambas3'.

2010-05-28 Thread Dr.Diesel

FYI, caused by Today's SVN pull, 2975, everything was fine 2 days ago.

[a...@ace ~]$ gambas3
gbr3: no project file in '/usr/local/bin/gambas3'.
[a...@ace ~]$ 

Happy to provide more info if needed.

Thanks
-- 
View this message in context: 
http://old.nabble.com/gbr3%3A-no-project-file-in-%27-usr-local-bin-gambas3%27.-tp28706873p28706873.html
Sent from the gambas-user mailing list archive at Nabble.com.


--

___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user