Zandronum Server on FreeBSD: Difference between revisions

From Zandronum Wiki
No edit summary
No edit summary
Line 1: Line 1:
It is possible to run a Zandronum server on FreeBSD.
{{Warning|This guide hasn't been updated since 2016 and probably won't work on newer versions on FreeBSD.}}
 
__TOC__
 
== Binary Packages ==
csnxs provides binary packages for FreeBSD, which are available on his [https://csnxs.uk/archive/id/doom/sourceports/zandronum/builds/freebsd/ archive].
 
Before you use these packages, you must install dependencies:
<pre>
$ pkg install sdl sqlite3 openssl
</pre>
 
If asked to install <code>pkg</code>, do so.
 
=== Package List ===
'''Note:''' Packages in <span style='background: #b3ffb3'>green</span> are the latest '''stable''' build, and packages in <span style='background: #ffffb3'>yellow</span> are the latest '''beta''' build.
{| class='wikitable' style='width: 100%;'
! style='width:33%;' | Version
! style='width:33%;' | i386
! style='width:33%;' | x86_64
|- style='background: #ffffb3'
| 3.0-alpha-160814-2010
|
| [https://csnxs.uk/archive/id/doom/sourceports/zandronum/builds/freebsd/betas/zandronum-server-freebsd-x86_64-3.0-alpha-160814-2010.txz zandronum-server-freebsd-x86_64-3.0-alpha-160814-2010.txz] / [https://csnxs.uk/archive/id/doom/sourceports/zandronum/builds/freebsd/betas/zandronum-server-freebsd-x86_64-3.0-alpha-160814-2010-with-debug.txz with-debug]
|- style='background: #b3ffb3'
| '''2.1.2'''
| [https://csnxs.uk/archive/id/doom/sourceports/zandronum/builds/freebsd/zandronum-server-freebsd-i386-2.1.2.txz zandronum-server-freebsd-i386-2.1.2.txz]
| [https://csnxs.uk/archive/id/doom/sourceports/zandronum/builds/freebsd/zandronum-server-freebsd-x86_64-2.1.2.txz zandronum-server-freebsd-x86_64-2.1.2.txz]
|}
 
Once downloaded, use <code>tar xf</code> to extract the package into a new directory.
 
== Compiling ==
== Compiling ==
* Install dependencies
* Install dependencies

Revision as of 03:08, 18 January 2021

Warning: This guide hasn't been updated since 2016 and probably won't work on newer versions on FreeBSD.

Compiling

  • Install dependencies
pkg install sdl sqlite3 openssl cmake python3 mercurial

If you're building Zandronum 3.x or higher:

pkg install gcc5 && export cc=gcc5 && export CXX=g++5

If you're building Zandronum 2.x or lower:

pkg install gcc && export CC=gcc48 && export CXX=g++48
  • Create your working dir:
mkdir zabuild && cd zabuild
hg clone https://bitbucket.org/Torr_Samaho/zandronum && cd zandronum
  • Optionally, checkout the latest stable release:
hg update ZA_3.1
#include <sys/wait.h>
  • Generate the CMake files
mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=Release -DSERVERONLY=1 -DCMAKE_CXX_FLAGS="-fpermissive" ../zandronum
  • Build it
make -j$(nproc)
  • Assuming it all went well, you should have these files in your current directory:
    • zandronum-server
    • zandronum-server.debug
    • zandronum.pk3
    • skulltag_actors.pk3