Gamin: Difference between revisions

From CBLFS
Jump to navigationJump to search
Kalessin (talk | contribs)
I added the "Contents" section from BLFS.
Tdshepard (talk | contribs)
Alternate download source
 
(8 intermediate revisions by 4 users not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://www.gnome.org/~veillard/gamin/sources/gamin-0.1.7.tar.gz
| http://www.gnome.org/~veillard/gamin/sources/gamin-{{Gamin-Version}}.tar.gz
|-
!Alternate Source Download:
| http://ftp.acc.umu.se/pub/GNOME/sources/gamin/0.1/gamin-{{Gamin-Version}}.tar.bz2
|}
|}


----
----


== Introduction to Gamin ==
{{Package-Introduction|Gamin is a file and directory monitoring system.|http://www.gnome.org/~veillard/gamin/}}
 
This package contains a File Alteration Monitor which is useful for notifying applications of changes to the file system. Gamin is compatible with [http://oss.sgi.com/projects/fam/ FAM].


== Dependencies ==
== Dependencies ==
Line 15: Line 16:
=== Required ===
=== Required ===
* [[Glib2]]
* [[Glib2]]
=== Optional ===
=== Optional ===
* [[Python]]
* [[Python]]
Line 24: Line 26:
Compile the package:
Compile the package:


sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
  make
  make
Line 34: Line 37:


  make install &&
  make install &&
  install -v -m755 -d /usr/share/doc/gamin-0.1.7 &&
  install -v -m755 -d /usr/share/doc/gamin-{{Gamin-Version}} &&
  install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.7
  install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-{{Gamin-Version}}


== Multilib ==
== Multilib ==
Line 43: Line 46:
Compile the package:
Compile the package:


sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
  CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
  CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
Line 55: Line 59:
Compile the package:
Compile the package:


sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
  CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
  CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
  ./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/sbin &&
Line 67: Line 72:
Compile the package:
Compile the package:


sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
  CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
  CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
  ./configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/sbin &&
Line 78: Line 84:


  make install &&
  make install &&
  install -v -m755 -d /usr/share/doc/gamin-0.1.7 &&
  install -v -m755 -d /usr/share/doc/gamin-{{Gamin-Version}} &&
  install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.7
  install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-{{Gamin-Version}}
 


= Contents =
= Contents =


{| style="text-align: left;"
{| style="text-align: left;"
|-
|-valign="top"
! Installed Programs:
! Installed Programs:
|  gam_server
|  gam_server
|-
|-valign="top"
! Installed Libraries:
! Installed Libraries:
| libfam.{so,a}, libgamin-1.{so,a}, libgamin_shared.a and optionally, Python _gamin.{so,a} module
| libfam.{so,a}, libgamin-1.{so,a}, libgamin_shared.a and optionally, Python _gamin.{so,a} module
|-
|-valign="top"
! Installed Directory:
! Installed Directory:
| /usr/share/doc/gamin-0.1.7
| /usr/share/doc/gamin-{{Gamin-Version}}
|}
|}


Line 99: Line 104:


{| style="text-align: left;"
{| style="text-align: left;"
|-
|-valign="top"
! gam_server
! gam_server
| is the file alteration monitor daemon that is started on demand for each user.
| is the file alteration monitor daemon that is started on demand for each user.
|-
|-valign="top"
! libgamin.{so,a}
! libgamin.{so,a}
| contains functions that support the file allocation monitor.
| contains functions that support the file allocation monitor.
|-
|-valign="top"
! libfam.{so,a}
! libfam.{so,a}
| contains functions that provide compatibility with FAM.
| contains functions that provide compatibility with FAM.
|}
|}
[[Category:General Libs]]

Latest revision as of 02:09, 16 March 2009

Download Source: http://www.gnome.org/~veillard/gamin/sources/gamin-0.1.10.tar.gz
Alternate Source Download: http://ftp.acc.umu.se/pub/GNOME/sources/gamin/0.1/gamin-0.1.10.tar.bz2

Introduction to Gamin

Gamin is a file and directory monitoring system.

Project Homepage: http://www.gnome.org/~veillard/gamin/

Dependencies

Required

Optional

Non-Multilib

Compile the package:

sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
./configure --prefix=/usr --libexecdir=/usr/sbin &&
make

If you have Doxygen installed and wish to build documentation, pass the following to the configure script.

 --enable-docs

Install the package

make install &&
install -v -m755 -d /usr/share/doc/gamin-0.1.10 &&
install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.10

Multilib

32Bit

Compile the package:

sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --libexecdir=/usr/sbin &&
make

Install the package

make install

N32

Compile the package:

sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/sbin &&
make

Install the package

make install

64Bit

Compile the package:

sed -i "s/-Wall/& -D_GNU_SOURCE/" configure &&
CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/sbin &&
make

If you have Doxygen installed and wish to build documentation, pass the following to the configure script.

 --enable-docs

Install the package

make install &&
install -v -m755 -d /usr/share/doc/gamin-0.1.10 &&
install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.10

Contents

Installed Programs: gam_server
Installed Libraries: libfam.{so,a}, libgamin-1.{so,a}, libgamin_shared.a and optionally, Python _gamin.{so,a} module
Installed Directory: /usr/share/doc/gamin-0.1.10

Short Descriptions

gam_server is the file alteration monitor daemon that is started on demand for each user.
libgamin.{so,a} contains functions that support the file allocation monitor.
libfam.{so,a} contains functions that provide compatibility with FAM.
Retrieved from "?title=Gamin&oldid=17169"