Re: question about packages installation

2006-08-29 Thread Saverio Iacovelli
I writed in .cshrc: setenv PKG_PATH ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All;ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/vulnerable After I tried: #echo $PKG_PATH

Re: question about packages installation

2006-08-29 Thread Petr Janda
Put around the path. like this: setenv PKG_PATH ftp://url1;ftp://url2; petr Saverio Iacovelli wrote: I writed in .cshrc: setenv PKG_PATH

Re: question about packages installation

2006-08-29 Thread Petr Janda
Installing package from source would fail too should it have a known vulnerability. I dont see it as a big problem really. You can install the missing packages later. Saverio Iacovelli wrote: setenv PKG_PATH ftp://url1;ftp://url2;; Ok, the command work, but perhaps there is still a

Re: question about packages installation

2006-08-29 Thread Justin C. Sherrill
On Tue, August 29, 2006 8:44 am, Saverio Iacovelli wrote: Ok, the command work, but perhaps there is still a problem of pkgsrc. If you install a package contained in ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All directory, and you need install a

Re: question about packages installation

2006-08-29 Thread Erik Wikström
On 2006-08-29 14:44, Saverio Iacovelli wrote: setenv PKG_PATH ftp://url1;ftp://url2;; Ok, the command work, but perhaps there is still a problem of pkgsrc. If you install a package contained in ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All directory, and

Re: question about packages installation

2006-08-29 Thread Joerg Sonnenberger
On Tue, Aug 29, 2006 at 02:44:46PM +0200, Saverio Iacovelli wrote: setenv PKG_PATH ftp://url1;ftp://url2;; Ok, the command work, but perhaps there is still a problem of pkgsrc. If you install a package contained in

Re: question about packages installation

2006-08-28 Thread Petr Janda
Depends, what shell you are using. I use tcsh, so i put all my stuff into ~/.cshrc Petr Saverio Iacovelli wrote: Yesterday I edited: setenv PKG_PATH ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All Now I try: #echo $PKG_PATH PKG_PATH: indefinite variable

Re: question about packages installation

2006-08-28 Thread Saverio Iacovelli
Depends, what shell you are using. I use tcsh, so i put all my stuff into ~/.cshrc The default shell of DragonFly, I think tcsh. __ Do You Yahoo!? Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto spazio gratuito per i

Re: question about packages installation

2006-08-28 Thread Sascha Wildner
Saverio Iacovelli wrote: Depends, what shell you are using. I use tcsh, so i put all my stuff into ~/.cshrc The default shell of DragonFly, I think tcsh. Try # echo $SHELL in case you're not sure. Sascha -- http://yoyodyne.ath.cx

Re: question about packages installation

2006-08-28 Thread Petr Janda
That would be the csh shell. It goes into the same file. ~/.cshrc. So, you insert something like this into the file. setenv PKG_PATH ftp://theURL Petr Saverio Iacovelli wrote: Depends, what shell you are using. I use tcsh, so i put all my stuff into ~/.cshrc The default shell of

Re: question about packages installation

2006-08-28 Thread Saverio Iacovelli
My default shell is csh. I writed in /root/.cshrc setenv PKG_PATH ftp://theURL but I would to set multiple paths. Is it possible to set multiple environment values with setenv? Really, I installed abiword-2.4.5.tgz from ftp://.../All directory, but I don't can use abiword bacause there is a

question about packages installation

2006-08-27 Thread Saverio Iacovelli
Exist it a software to install pkgsrc packages and which checks dependencies and installs automatically dependant packages. Regards, Saverio __ Do You Yahoo!? Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto spazio

Re: question about packages installation

2006-08-27 Thread Gergo Szakal
Saverio Iacovelli wrote: Exist it a software to install pkgsrc packages and which checks dependencies and installs automatically dependant packages. pkg_add checks deps, so does bmake install. :-)

Re: question about packages installation

2006-08-27 Thread Saverio Iacovelli
For example, I would install firefox-1.5.0.6.tgz, then I must try: #pkg_add firefox-1.5.0.6.tgz (and installation fails because it needs other packages) #bmake install __ Do You Yahoo!? Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e

Re: question about packages installation

2006-08-27 Thread Gergo Szakal
Saverio Iacovelli wrote: For example, I would install firefox-1.5.0.6.tgz, then I must try: #pkg_add firefox-1.5.0.6.tgz (and installation fails because it needs other packages) #bmake install Either install with abs. URL like # pkg_add http://packages.url/firefox-1.5.0.6.tgz or # env

Re: question about packages installation

2006-08-27 Thread Erik Wikström
On 2006-08-27 14:03, Saverio Iacovelli wrote: For example, I would install firefox-1.5.0.6.tgz, then I must try: #pkg_add firefox-1.5.0.6.tgz (and installation fails because it needs other packages) You need to specify the path the the file (if you have not set the PKG_PATH-variable) so

Re: question about packages installation

2006-08-27 Thread Saverio Iacovelli
Ok, but the follows command: #pkg_add ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All/firefox-1.5.0.6.tgz don't install the packages wich need for firefox installation. So, installation fails because it needs to install before other packages. pkg_add check

Re: question about packages installation

2006-08-27 Thread Saverio Iacovelli
So, I edit: #setenv PKG_PATH ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All pkg_add command works, but the problem is that not all packages are present in ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/i386/All directory. In

Re: question about packages installation

2006-08-27 Thread Thomas Schlesinger
Am Sonntag, 27. August 2006 16:48 schrieb Saverio Iacovelli: So, I edit: #setenv PKG_PATH ftp://packages.stura.uni-rostock.de/pkgsrc-current/DragonFly/1.6.0-RELEASE/ i386/All pkg_add command works, but the problem is that not all packages are present in

Re: question about packages installation

2006-08-27 Thread Justin C. Sherrill
On Sun, August 27, 2006 10:48 am, Saverio Iacovelli wrote: In fact, firefox-1.5.0.6.tgz is not present in above directory. pkg_add installs all dependant packages wich they are present, if the package is not present then fails. A lot of packages are not present in above directory!