Gamin: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 13: Line 13:
=== Optional ===
=== Optional ===
* [[Python]]
* [[Python]]
* [[Doxygen]]
* [[Gtk-Doc]]


== Non-Multilib ==
== Non-Multilib ==
Line 20: Line 22:
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libexecdir=/usr/sbin &&
  make
  make
If you have Doxygen installed and wish to build documentation, pass the following to the configure script.
  --enable-docs


Install the package
Install the package
Line 60: Line 66:
  ./configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/sbin &&
  ./configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/sbin &&
  make
  make
If you have Doxygen installed and wish to build documentation, pass the following to the configure script.
  --enable-docs


Install the package
Install the package

Revision as of 02:17, 24 October 2006

Download Source: http://www.gnome.org/~veillard/gamin/sources/gamin-0.1.7.tar.gz

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./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.7 &&
install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.7

Multilib

32Bit

Compile the package:

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:

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:

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.7 &&
install -v -m644 doc/*.{html,fig,gif,txt} /usr/share/doc/gamin-0.1.7
Retrieved from "?title=Gamin&oldid=3289"