Difference between revisions of "BSD platforms"
From Gramps
(code example to reflect highest version at OpenBSD package collection) |
|||
| Line 2: | Line 2: | ||
[[Category:Documentation]][[Category:Developers/Packaging]] | [[Category:Documentation]][[Category:Developers/Packaging]] | ||
| − | ==Automatic installation | + | ==Automatic installation== |
| − | * Install from [http://openports.se/misc/gramps openports.se/misc/gramps] | + | * Install from [http://openports.se/misc/gramps openports.se/misc/gramps] from the OpenBSD package collection |
| + | |||
| + | Or | ||
| + | |||
| + | * Install from [http://portsmon.freebsd.org/portoverview.py?category=science&portname=gramps freebsd ports] | ||
==Manual installation== | ==Manual installation== | ||
Revision as of 20:35, 27 September 2011
Automatic installation
- Install from openports.se/misc/gramps from the OpenBSD package collection
Or
- Install from freebsd ports
Manual installation
This page documents installing GRAMPS on FreeBSD, openBSD, etc. First make sure the following packages are installed:
- py24-gnome
- py24-gnome-extras
- automake19
- gnomecommon
- autoconf259
- gnu-automake
- gnu-libtool
- gmake
Then do the following:
- Download and extract the source code:
$ gunzip gramps-3.2.6.tar.gz $ tar xvf gramps-3.2.6.tar
- Configure the source code to use
/usr/X11R6for its path, since that is where FreeBSD likes to put gtk/gnome stuff:
$ cd gramps-3.2.6
$ export PATH=/usr/local/gnu-autotools/bin:$PATH
$ export ACLOCAL_FLAGS="-I /usr/local/gnu-autotools/share/aclocal
-I. -I /usr/local/share/aclocal -I /usr/X11R6/share/aclocal"
$ ./autogen.sh
$ gmake
$ gmake install
This will compile and install GRAMPS correctly.