GtkHTML: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
Build the package: | Build the package: | ||
./configure --prefix=/ | ./configure --prefix=${GNOME_PREFIX} \ | ||
--libexecdir=${GNOME_PREFIX}/lib/gtkhtml && | |||
make | |||
Install the package: | |||
make install | make install | ||
== Multilib == | |||
=== 32Bit === | |||
Build the package: | |||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | |||
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | |||
./configure --prefix=${GNOME_PREFIX} \ | |||
--libexecdir=${GNOME_PREFIX}/lib/gtkhtml && | |||
sed -i "s/lib64/lib/g" libtool && | |||
make | |||
Install the package: | |||
make install | |||
=== N32 === | |||
Build the package: | |||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | |||
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | |||
./configure --prefix=${GNOME_PREFIX} \ | |||
--libdir=${GNOME_PREFIX}/lib32 \ | |||
--libexecdir=${GNOME_PREFIX}/lib32/gtkhtml && | |||
sed -i "s/lib64/lib32/g" libtool && | |||
make | |||
Install the package: | |||
make install | |||
=== 32Bit === | |||
Build the package: | |||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | |||
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | |||
./configure --prefix=${GNOME_PREFIX} \ | |||
--libdir=${GNOME_PREFIX}/lib64 \ | |||
--libexecdir=${GNOME_PREFIX}/lib64/gtkhtml && | |||
make | |||
Install the package: | Install the package: | ||
make install | make install |
Revision as of 19:10, 7 November 2006
Download Source: | http://ftp.acc.umu.se/pub/gnome/sources/gtkhtml/3.13/gtkhtml-3.13.2.tar.bz2 |
---|
Dependencies
Required
Optional
Non-Multilib
Build the package:
./configure --prefix=${GNOME_PREFIX} \ --libexecdir=${GNOME_PREFIX}/lib/gtkhtml && make
Install the package:
make install
Multilib
32Bit
Build the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=${GNOME_PREFIX} \ --libexecdir=${GNOME_PREFIX}/lib/gtkhtml && sed -i "s/lib64/lib/g" libtool && make
Install the package:
make install
N32
Build the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=${GNOME_PREFIX} \ --libdir=${GNOME_PREFIX}/lib32 \ --libexecdir=${GNOME_PREFIX}/lib32/gtkhtml && sed -i "s/lib64/lib32/g" libtool && make
Install the package:
make install
32Bit
Build the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \ PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=${GNOME_PREFIX} \ --libdir=${GNOME_PREFIX}/lib64 \ --libexecdir=${GNOME_PREFIX}/lib64/gtkhtml && make
Install the package:
make install