Difference between revisions of "Installing Emacs on BSD"

From WikEmacs
Jump to navigation Jump to search
(ZTTVOauYKmzounTSsZr)
(8 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Yeah, undeadly.org does, but there isn't that much trafifc on itI like to see daily info, if you can't tell from my schedule here. To qualify that: undeadly.org does a good job and I've been reading it for years, but I bet there's more news and events possible to post.
+
Emacs is available on the BSD variants either through precompiled binary packages or user-compiled portsInstallation instructions vary according to exact OS.
 +
 
 +
== FreeBSD ==
 +
 
 +
To install the most recent prebuilt binary package of the (at the time) most recent stable version:
 +
 
 +
<source lang="text">
 +
 
 +
# pkg_add -r emacs
 +
 
 +
</source>
 +
 
 +
To install emacs without X11 dependencies:
 +
 
 +
<source lang="text">
 +
 
 +
# pkg_add -r emacs-nox11
 +
 
 +
</source>
 +
 
 +
Or use the ports to build from source:
 +
 
 +
<source lang="text">
 +
 
 +
# cd /usr/ports/editors/emacs && make install
 +
 
 +
</source>
 +
 
 +
Developers may find "[http://www.freebsd.org/doc/en/books/developers-handbook/emacs.html Using Emacs as a Development Environment]," from the official FreeBSD project documentation, a good starting point. Some of the config tweaks are a bit dated and might need updating. But overall it's a reference
 +
 
 +
== OpenBSD ==
 +
[http://www.openbsd.org/faq/faq15.html#Easy Set <tt>PKG_PATH</tt>] to an appropriate mirror.
 +
 
 +
<source lang="text">
 +
# pkg_add -i emacs</source>
 +
 
 +
<tt>pkg_add</tt> will prompt you for which version you want&mdash;currently, versions 21, 22, and 23 are available.
 +
 
 +
You can also install from the ports tree; however, "The [OpenBSD] ports tree is meant for advanced users. Everyone is encouraged to use the pre-compiled binary packages."(OpenBSD FAQ, [http://www.openbsd.org/faq/faq15.html#Ports section 15.3]) 
 +
 
 +
No premade port or package for Emacs 24 seems to be publicly available currently.
 +
 
 +
== NetBSD, DragonFlyBSD, other pkgsrc systems ==
 +
 
 +
On systems using [http://www.pkgsrc.org pkgsrc], something like
 +
 
 +
<source lang="text">
 +
 
 +
# cd /usr/pkgsrc/editors/emacs && make install
 +
 
 +
</source>
 +
 
 +
should work.
 +
 
 +
[[Category:Emacs-24]][[Category:Beginner]][[Category:Install Or Upgrade]]

Revision as of 07:46, 25 February 2014

Emacs is available on the BSD variants either through precompiled binary packages or user-compiled ports. Installation instructions vary according to exact OS.

FreeBSD

To install the most recent prebuilt binary package of the (at the time) most recent stable version:

# pkg_add -r emacs

To install emacs without X11 dependencies:

# pkg_add -r emacs-nox11

Or use the ports to build from source:

# cd /usr/ports/editors/emacs && make install

Developers may find "Using Emacs as a Development Environment," from the official FreeBSD project documentation, a good starting point. Some of the config tweaks are a bit dated and might need updating. But overall it's a reference

OpenBSD

Set PKG_PATH to an appropriate mirror.

# pkg_add -i emacs

pkg_add will prompt you for which version you want—currently, versions 21, 22, and 23 are available.

You can also install from the ports tree; however, "The [OpenBSD] ports tree is meant for advanced users. Everyone is encouraged to use the pre-compiled binary packages."(OpenBSD FAQ, section 15.3)

No premade port or package for Emacs 24 seems to be publicly available currently.

NetBSD, DragonFlyBSD, other pkgsrc systems

On systems using pkgsrc, something like

# cd /usr/pkgsrc/editors/emacs && make install

should work.