Re: Newbie question about pkg_add

2008-10-29 Thread Canhua
On Wed, Oct 29, 2008 at 1:07 PM, Steven Susbauer
[EMAIL PROTECTED] wrote:
 ports-mgmt/portupgrade is a useful tool for easily getting packages and
 ports, it includes the tool portinstall which does what it says it does.
 By running portinstall -P pkgname, it will install a port and
 dependencies with packages if available, otherwise they are built from
 source.

 portsman and portmanager are some other frontend tools that can help
 with package administration, it's really up to your own tastes.

 -Steve

I tried portinstall, although dependecies are install with port sources still.
It take me a whole afternoon to portinstall math/py-neworkx, and it
still doesn't complete as yet.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add

2008-10-29 Thread Thiago R. Santos
On Wed, 2008-10-29 at 11:14 +0800, Canhua wrote:
 Hi, good day all. I am new to FreeBSD.
 I tried to pkg_add -r a package (py-networkx), which tell me that:
 Error: FTP Unable to get ftp://ftp.freebsd.org/pub/
 FreeBSD/ports/i386/packages-7.0-release/Latest/py-networkx.tbz:
 File unavailable (e.g., file not found, no access)
 
 although I know that py-network does exist in /usr/ports.
 Actually I could go to /usr/ports/math/py-networkx and make install
 using ports means.
 
 Then I could learn from this that there are softwares that could be
 install from ports while not able to be added from package system?
 Am I right?

The package name of this port is 'py25-networkx'. You can use the
Freshports.org search to find the package names.

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
-- 
Thiago R. Santos [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add

2008-10-29 Thread Canhua
On Wed, Oct 29, 2008 at 9:18 PM, Thiago R. Santos [EMAIL PROTECTED] wrote:
 On Wed, 2008-10-29 at 11:14 +0800, Canhua wrote:
 Hi, good day all. I am new to FreeBSD.
 I tried to pkg_add -r a package (py-networkx), which tell me that:
 Error: FTP Unable to get ftp://ftp.freebsd.org/pub/
 FreeBSD/ports/i386/packages-7.0-release/Latest/py-networkx.tbz:
 File unavailable (e.g., file not found, no access)

 although I know that py-network does exist in /usr/ports.
 Actually I could go to /usr/ports/math/py-networkx and make install
 using ports means.

 Then I could learn from this that there are softwares that could be
 install from ports while not able to be added from package system?
 Am I right?

 The package name of this port is 'py25-networkx'. You can use the
 Freshports.org search to find the package names.

Wonderful place~ thank you

However I could not pkg_add py25-networkx still, being told that
  pkg_add: unable to fetch
'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.0-release/Latest/py25-networkx.tbz'
by URL
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add

2008-10-29 Thread Thiago R. Santos
On Wed, 2008-10-29 at 22:41 +0800, Canhua wrote:
 Wonderful place~ thank you
 
 However I could not pkg_add py25-networkx still, being told that
   pkg_add: unable to fetch
 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7.0-release/Latest/py25-networkx.tbz'
 by URL

Oh, sorry. I didn't realize that you wanted a package built for
7.0-RELEASE. Indeed, there isn't a package of this port built for this
release, so you might want to get packages from the 'packages-7-stable'
directory[1][2]. This particular port seems to have been added to the
ports tree after the release of FreeBSD 7.0. Of course, you can build it
yourself from your ports tree.

[1]http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/packages-using.html
[2]ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/
-- 
Thiago R. Santos [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add (Canhua)

2008-10-29 Thread Kayven Riese


 --

 Message: 2
 Date: Wed, 29 Oct 2008 18:12:52 +0800
 From: Canhua [EMAIL PROTECTED]
 Subject: Re: Newbie question about pkg_add
 To: Steven Susbauer [EMAIL PROTECTED]
 Cc: freebsd-questions@freebsd.org
 Message-ID:
[EMAIL PROTECTED]
 Content-Type: text/plain; charset=ISO-8859-1

 On Wed, Oct 29, 2008 at 1:07 PM, Steven Susbauer
 [EMAIL PROTECTED] wrote:
  ports-mgmt/portupgrade is a useful tool for easily getting packages and
  ports, it includes the tool portinstall which does what it says it does.
  By running portinstall -P pkgname, it will install a port and
  dependencies with packages if available, otherwise they are built from
  source.
 
  portsman and portmanager are some other frontend tools that can help
  with package administration, it's really up to your own tastes.
 
  -Steve

 I tried portinstall, although dependecies are install with port sources
 still.
 It take me a whole afternoon to portinstall math/py-neworkx, and it
 still doesn't complete as yet.


Go to sleep! it will be ready in the morning maybe! {:)

*--*
 Kayven Riese, BSCS,
 MS  (Physiology and Biophysics)
 (415) 902 5513 cellular
 http://kayve.net
 Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Newbie question about pkg_add

2008-10-28 Thread Canhua
Hi, good day all. I am new to FreeBSD.
I tried to pkg_add -r a package (py-networkx), which tell me that:
Error: FTP Unable to get ftp://ftp.freebsd.org/pub/
FreeBSD/ports/i386/packages-7.0-release/Latest/py-networkx.tbz:
File unavailable (e.g., file not found, no access)

although I know that py-network does exist in /usr/ports.
Actually I could go to /usr/ports/math/py-networkx and make install
using ports means.

Then I could learn from this that there are softwares that could be
install from ports while not able to be added from package system?
Am I right?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add

2008-10-28 Thread Jeremy Chadwick
On Wed, Oct 29, 2008 at 11:14:34AM +0800, Canhua wrote:
 Hi, good day all. I am new to FreeBSD.
 I tried to pkg_add -r a package (py-networkx), which tell me that:
 Error: FTP Unable to get ftp://ftp.freebsd.org/pub/
 FreeBSD/ports/i386/packages-7.0-release/Latest/py-networkx.tbz:
 File unavailable (e.g., file not found, no access)
 
 although I know that py-network does exist in /usr/ports.
 Actually I could go to /usr/ports/math/py-networkx and make install
 using ports means.
 
 Then I could learn from this that there are softwares that could be
 install from ports while not able to be added from package system?
 Am I right?

Correct -- not every port has a package.

-- 
| Jeremy Chadwickjdc at parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie question about pkg_add

2008-10-28 Thread Steven Susbauer

Jeremy Chadwick wrote:

On Wed, Oct 29, 2008 at 11:14:34AM +0800, Canhua wrote:

Hi, good day all. I am new to FreeBSD.
I tried to pkg_add -r a package (py-networkx), which tell me that:
Error: FTP Unable to get ftp://ftp.freebsd.org/pub/
FreeBSD/ports/i386/packages-7.0-release/Latest/py-networkx.tbz:
File unavailable (e.g., file not found, no access)

although I know that py-network does exist in /usr/ports.
Actually I could go to /usr/ports/math/py-networkx and make install
using ports means.

Then I could learn from this that there are softwares that could be
install from ports while not able to be added from package system?
Am I right?


Correct -- not every port has a package.


ports-mgmt/portupgrade is a useful tool for easily getting packages and
ports, it includes the tool portinstall which does what it says it does.
By running portinstall -P pkgname, it will install a port and
dependencies with packages if available, otherwise they are built from
source.

portsman and portmanager are some other frontend tools that can help
with package administration, it's really up to your own tastes.

-Steve


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]