Libgnomeui: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| (13 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://ftp.gnome.org/pub/GNOME/sources/libgnomeui/ | | http://ftp.gnome.org/pub/GNOME/sources/libgnomeui/{{Libgnomeui-Version2}}/libgnomeui-{{Libgnomeui-Version}}.tar.bz2 | ||
|} | |} | ||
---- | ---- | ||
{{Blank-Package-Introduction}} | |||
== Dependencies == | == Dependencies == | ||
| Line 11: | Line 13: | ||
=== Required === | === Required === | ||
* [[libbonoboui]] | * [[libbonoboui]] | ||
* [[ | * [[GNOME Keyring]] | ||
=== Optional === | === Optional === | ||
* [[libjpeg]] | * [[libjpeg]] | ||
| Line 28: | Line 31: | ||
make install | make install | ||
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link: | |||
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \ | |||
/usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0) | |||
== Multilib == | == Multilib == | ||
| Line 35: | Line 43: | ||
Compile the package: | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && | |||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | |||
./configure --prefix=${GNOME_PREFIX} \ | ./configure --prefix=${GNOME_PREFIX} \ | ||
--libexecdir=${GNOME_PREFIX}/lib/libgnomeui && | --libexecdir=${GNOME_PREFIX}/lib/libgnomeui && | ||
| Line 43: | Line 52: | ||
make install | make install | ||
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link: | |||
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \ | |||
/usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0) | |||
Clean up the environment: | |||
unset PKG_CONFIG_PATH | |||
=== N32 === | === N32 === | ||
| Line 48: | Line 66: | ||
Compile the package: | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" && | |||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | |||
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \ | ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \ | ||
--libexecdir=${GNOME_PREFIX}/lib32/libgnomeui && | --libexecdir=${GNOME_PREFIX}/lib32/libgnomeui && | ||
| Line 56: | Line 75: | ||
make install | make install | ||
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link: | |||
ln -v -s ${GNOME_PREFIX}/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \ | |||
/usr/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0) | |||
Clean up the environment: | |||
unset PKG_CONFIG_PATH | |||
=== 64Bit === | === 64Bit === | ||
| Line 61: | Line 89: | ||
Compile the package: | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && | |||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | |||
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \ | ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \ | ||
--libexecdir=${GNOME_PREFIX}/lib64/libgnomeui && | --libexecdir=${GNOME_PREFIX}/lib64/libgnomeui && | ||
| Line 69: | Line 98: | ||
make install | make install | ||
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link: | |||
ln -v -s ${GNOME_PREFIX}/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \ | |||
/usr/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0) | |||
Clean up the environment: | |||
unset PKG_CONFIG_PATH | |||
Latest revision as of 13:12, 14 March 2011
| Download Source: | http://ftp.gnome.org/pub/GNOME/sources/libgnomeui/2.24/libgnomeui-2.24.4.tar.bz2 |
|---|
Introduction to Libgnomeui
Project Homepage: Unknown
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=${GNOME_PREFIX} \
--libexecdir=${GNOME_PREFIX}/lib/libgnomeui &&
make
Install the package
make install
If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
/usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)
Multilib
32Bit
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} \
--libexecdir=${GNOME_PREFIX}/lib/libgnomeui &&
make
Install the package
make install
If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
/usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)
Clean up the environment:
unset PKG_CONFIG_PATH
N32
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \
--libexecdir=${GNOME_PREFIX}/lib32/libgnomeui &&
make
Install the package
make install
If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:
ln -v -s ${GNOME_PREFIX}/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
/usr/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)
Clean up the environment:
unset PKG_CONFIG_PATH
64Bit
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \
--libexecdir=${GNOME_PREFIX}/lib64/libgnomeui &&
make
Install the package
make install
If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:
ln -v -s ${GNOME_PREFIX}/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
/usr/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)
Clean up the environment:
unset PKG_CONFIG_PATH