Difference between revisions of "BSD platforms"

From Gramps
Jump to: navigation, search
(import old content)
 
Line 13: Line 13:
 
* gmake  
 
* gmake  
  
Then do the following:<code>
+
Then do the following:
  # Download the source code
+
* Download and extract the source code:<code>
  # Extract the source code:
 
 
   $ gunzip gramps-2.2.3.tar.gz
 
   $ gunzip gramps-2.2.3.tar.gz
   $ tar xvf gramps-2.2.3.tar
+
   $ tar xvf gramps-2.2.3.tar</code>
 
+
* Configure the source code to use <code>/usr/X11R6</code> for its path, since that is where FreeBSD likes to put gtk/gnome stuff:<code>
  # Configure the source code to use /usr/X11R6 for its path, since that is where FreeBSD likes to put gtk/gnome stuff
 
 
   $ cd gramps-2.2.3
 
   $ cd gramps-2.2.3
 
 
   $ export PATH=/usr/local/gnu-autotools/bin:$PATH
 
   $ 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"
 
   $ export ACLOCAL_FLAGS="-I /usr/local/gnu-autotools/share/aclocal -I. -I /usr/local/share/aclocal -I /usr/X11R6/share/aclocal"

Revision as of 02:37, 1 March 2007

Gramps-notes.png
This page has good information but needs a cleanup. Please make the Gramps Wiki more useful by re‑organizing this page and linking introductory material. Consider also updating the screenshots.

This page documents installing GRAMPS on FeeBSD, openBSD, ...

Packages to make sure 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-2.2.3.tar.gz
  $ tar xvf gramps-2.2.3.tar
  • Configure the source code to use /usr/X11R6 for its path, since that is where FreeBSD likes to put gtk/gnome stuff:
  $ cd gramps-2.2.3
  $ 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.