Difference between revisions of "Fam"

From CBLFS
Jump to navigationJump to search
m
(Added Multilib 64Bit)
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| ftp://oss.sgi.com/projects/fam/download/stable/fam-2.7.0.tar.gz
+
| ftp://oss.sgi.com/projects/fam/download/stable/fam-{{fam-Version}}.tar.gz
 +
|-
 +
!Required Patch:
 +
| http://svn.cross-lfs.org/svn/repos/patches/fam/fam-{{fam-Version}}-debian-2.patch
 
|}
 
|}
  
Line 12: Line 15:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 
For compiling with gcc-4 series do:
 
 
sed -i -e 's/NULL/0/g' include/BTree.h
 
sed -i -e '84s/NULL/0/' src/Interest.h
 
sed -i -e 's/alloc.h/memory/' src/IMon.c++
 
sed -i -e 's/iostream.h/iostream/' lib/Client.c++
 
  
 
Compile the package:
 
Compile the package:
  
 +
patch -Np1 -i ../fam-{{fam-Version}}-debian-2.patch &&
 +
libtoolize && autoreconf &&
 
  ./configure --prefix=/usr --sysconfdir=/etc &&
 
  ./configure --prefix=/usr --sysconfdir=/etc &&
 
  make
 
  make
Line 33: Line 31:
 
=== 32Bit ===
 
=== 32Bit ===
  
  To do ...
+
Compile the package:
 +
 
 +
  patch -Np1 -i ../fam-{{fam-Version}}-debian-2.patch &&
 +
libtoolize && autoreconf &&
 +
sed -i -e s/NULL/0/g src/Interest.h &&
 +
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
 +
./configure --prefix=/usr --sysconfdir=/etc &&
 +
make
 +
 
 +
Install the package
 +
 
 +
make install
 +
 
  
 
=== N32 ===
 
=== N32 ===
Line 41: Line 51:
 
=== 64Bit ===
 
=== 64Bit ===
  
  To do ...
+
Compile the package:
 +
 
 +
  patch -Np1 -i ../fam-2.7.0-debian-2.patch &&
 +
libtoolize && autoreconf &&
 +
sed -i -e s/NULL/0/g src/Interest.h &&
 +
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
 +
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc &&
 +
make
 +
 
 +
Install the package
 +
 
 +
make install
  
 
[[Category:General Libs]]
 
[[Category:General Libs]]

Latest revision as of 21:22, 14 March 2009

Download Source: ftp://oss.sgi.com/projects/fam/download/stable/fam-2.7.0.tar.gz
Required Patch: http://svn.cross-lfs.org/svn/repos/patches/fam/fam-2.7.0-debian-2.patch

Introduction to Fam

GUI tools should not mislead the user; they should display the current state of the system, even when changes to the system originate from outside of the tools themselves. FAM helps make GUI tools more usable by notifying them when the files they're interested in are created, modified, executed, and removed.

Project Homepage: http://oss.sgi.com/projects/fam/

Dependencies

Non-Multilib

Compile the package:

patch -Np1 -i ../fam-2.7.0-debian-2.patch &&
libtoolize && autoreconf &&
./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../fam-2.7.0-debian-2.patch &&
libtoolize && autoreconf &&
sed -i -e s/NULL/0/g src/Interest.h &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install


N32

To do ...

64Bit

Compile the package:

patch -Np1 -i ../fam-2.7.0-debian-2.patch &&
libtoolize && autoreconf &&
sed -i -e s/NULL/0/g src/Interest.h &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc &&
make

Install the package

make install