How to install 'vim'

Hello

See the picture, I can't install vim among several other basic applications onto my PowerPC Mac mini with FreeBSD 9.0. I tried installing from ports but it gave a compilation error. Should I downgrade from FreeBSD 9.0 in hopes it might have vim?

upn35.jpg
 
It would be more helpful if you could share the errors you got.

Some options which might help: keep in mind that there are actually 2 ports: editors/vim which builds the full package (for example by adding support for all supported programming languages) and you got editors/vim-lite; this installs only a small subset. It might do the trick.

Another thing to keep in mind is the VIM_PORT_SCRIPT_LANGS build option. This can be used to specify which languages Vim needs to support. That can be helpful if the error you got is related to one of the languages it depends on.

For example, you could add this to /etc/make.conf:

Code:
# VIM configuration
VIM_PORT_SCRIPT_LANGS="lua perl python"
That would make sure that the Vim port only provides support for Perl, Python and Lua.

Hope this can help.
 
Please upgrade to 9.1 or 9.2, FreeBSD 9.0 has been end-of-life since March 2013.

[thread=40469]Topics about unsupported FreeBSD versions[/thread]
 
I 've forgotten the name of the error in the installation from ports, but I remember it first downloaded too many patches and I guess the error might have something to do with this huge number of patches. I might try the editors/vim-lite

I will try FreeBSD 9.2 for PowerPC soon. Thanks.
 
Back
Top