Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Install the fish shell' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Install the fish shell
Authored by: ocypode on Aug 21, '08 09:40:35AM
I'm trying to install fish from the command line via MacPorts and I too am stuck at graphviz:

---> Fetching graphviz
---> Attempting to fetch graphviz-2.20.2.tar.gz from http://www.graphviz.org/pub/graphviz/ARCHIVE/
Error: Target org.macports.fetch returned: fetch failed
Error: The following dependencies failed to build: doxygen graphviz texlive texlive_base perl5.8 texi2html texinfo texlive_texmf-minimal texlive_texmf-full
Error: Status 1 encountered during processing.


Turns out that the http://www.graphviz.org/pub/graphviz/ARCHIVE/ does not exist. I did a web search and graphviz-2.20.2.tar.gz can be obtained from: http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz

Does anyone know how I can pass this corrected link to MacPorts?

Thanks in advance

[ Reply to This | # ]
Install the fish shell
Authored by: ocypode on Aug 21, '08 02:10:34PM
I figured out how to get macports to install graphviz.

1) cd to the var/macports/distfiles directory
2) Then 'sudo mkdir graphviz' if the graphviz directory is not present (it should be there as it was made when the graphviz install failed previously).
3) cd into the graphviz directory and copy the previously downloaded graphviz-2.20.2.tar.gz tarball or 'sudo wget http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz' to download it on the spot.
4) I'm paranoid so I cd out of the macports directories before running 'port install graphviz', but once you run it it will install graphviz.

Here is my terminial output showing the above steps in detail:

[orinoco@ocypode graphviz]$ pwd
/opt/local/var/macports/distfiles/graphviz
[orinoco@ocypode graphviz]$ sudo wget http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz
Password:
--13:31:36-- http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz
=> `graphviz-2.20.2.tar.gz'
Resolving www.graphviz.org... 192.20.225.20
Connecting to www.graphviz.org|192.20.225.20|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 13,334,096 [application/x-gzip]

100%[=================================================================>] 13,334,096 625.98K/s ETA 00:00

13:31:57 (608.96 KB/s) - `graphviz-2.20.2.tar.gz' saved [13334096/13334096]

[orinoco@ocypode graphviz]$ ls -l
total 26048
-rw-r--r-- 1 root admin 13334096 Jun 25 16:24 graphviz-2.20.2.tar.gz
[orinoco@ocypode cache]$ cd
[orinoco@ocypode ~]$ sudo port install graphviz
---> Fetching graphviz
---> Verifying checksum(s) for graphviz
---> Extracting graphviz
---> Configuring graphviz
---> Building graphviz with target all
---> Staging graphviz into destroot
---> Installing graphviz 2.20.2_0+darwin_9
---> Activating graphviz 2.20.2_0+darwin_9
---> Cleaning graphviz
[orinoco@ocypode ~]$

At this point. I re-ran 'sudo port install fish' and the fish install picked up from where it left off prior to chocking on graphviz. Should be done soon.

Cheers,



[ Reply to This | # ]
Install the fish shell
Authored by: ocypode on Aug 21, '08 02:19:02PM
I figured out how to get macports to install graphviz.

1) cd to the var/macports/distfiles directory
2) Then 'sudo mkdir graphviz' if the graphviz directory is not present (it should be there as it was made when the graphviz install failed previously).
3) cd into the graphviz directory and copy the previously downloaded graphviz-2.20.2.tar.gz tarball or 'sudo wget http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz' to download it on the spot.
4) I'm paranoid so I cd out of the macports directories before running 'port install graphviz', but once you run it it will install graphviz.

Here is my terminial output showing the above steps in detail:

[orinoco@ocypode graphviz]$ pwd
/opt/local/var/macports/distfiles/graphviz
[orinoco@ocypode graphviz]$ sudo wget http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz
Password:
--13:31:36-- http://www.graphviz.org/pub/graphviz/stable/SOURCES/graphviz-2.20.2.tar.gz
=> `graphviz-2.20.2.tar.gz'
Resolving www.graphviz.org... 192.20.225.20
Connecting to www.graphviz.org|192.20.225.20|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 13,334,096 [application/x-gzip]

100%[=================================================================>] 13,334,096 625.98K/s ETA 00:00

13:31:57 (608.96 KB/s) - `graphviz-2.20.2.tar.gz' saved [13334096/13334096]

[orinoco@ocypode graphviz]$ ls -l
total 26048
-rw-r--r-- 1 root admin 13334096 Jun 25 16:24 graphviz-2.20.2.tar.gz
[orinoco@ocypode cache]$ cd
[orinoco@ocypode ~]$ sudo port install graphviz
---> Fetching graphviz
---> Verifying checksum(s) for graphviz
---> Extracting graphviz
---> Configuring graphviz
---> Building graphviz with target all
---> Staging graphviz into destroot
---> Installing graphviz 2.20.2_0+darwin_9
---> Activating graphviz 2.20.2_0+darwin_9
---> Cleaning graphviz
[orinoco@ocypode ~]$

At this point. I re-ran 'sudo port install fish' and the fish install continued from where it left off prior to choking on graphviz. The fish install should complete soon.

Cheers,



[ Reply to This | # ]