Difference between revisions of "KDE4/KdeNetwork"

From CBLFS
Jump to navigationJump to search
(Addapted the multilib instructions to let them make more sence (you do not have to wait for the error to occur now))
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
 
* [[Qca2]]
 
* [[Qca2]]
 
* [[OpenSSL]]
 
* [[OpenSSL]]
* [[Decibel]] from [[KDE4/KdeSupport]]
+
* [[Decibel]]
 
* [[Libidn]]
 
* [[Libidn]]
 
* [[SQLite3]]
 
* [[SQLite3]]
Line 29: Line 29:
 
=== Runtime ===
 
=== Runtime ===
 
* [[PPP]]
 
* [[PPP]]
 
== Configuration Information ==
 
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 37: Line 34:
 
Compile the package:
 
Compile the package:
  
  mkdir -vv build &&
+
  mkdir -v build &&
 
  cd build &&
 
  cd build &&
  cmake .. -DCMAKE_INSTALL_PREFIX=$(kde4-config --prefix) &&              
+
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
 +
    -DSYSCONF_INSTALL_DIR=/etc/kde \
 +
    -DLIB_INSTALL_DIR=/opt/kde4/lib \
 +
    -DCMAKE_BUILD_TYPE=Release \
 +
    -DLIB_SUFFIX= \
 +
    ..&&
 
  make
 
  make
  
Line 55: Line 57:
 
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
 
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
 
     -DSYSCONF_INSTALL_DIR=/etc/kde \
 
     -DSYSCONF_INSTALL_DIR=/etc/kde \
     -DCMAKE_CXX_FLAGS=${BUILD32} \
+
     -DLIB_INSTALL_DIR=/opt/kde4/lib \
     -DCMAKE_C_FLAGS=${BUILD32} \
+
    -DCMAKE_BUILD_TYPE=Release \
     ..
+
    -DCMAKE_C_FLAGS="${BUILD32}" \
It seems that cmake some how adds lib64 directories to its search path, that is not right as we do not want to build against the 64-bit libraries of the system. We can fix this behavior with the following seds then proceed with make as normal
+
     -DCMAKE_CXX_FLAGS="${BUILD32}" \
 +
    -DLIB_SUFFIX= \
 +
     .. &&
 +
make
 +
 
 +
If kdebase fails "which it has done to me(oppiz) on several builds" let it error out with the ld lib64 type error. Start with clean source, run the cmake command above then switch to the below to make and make install. This is not proper and should not be done. It needs to be fixed and the problem located.  
  
 
  for file in $( find ./ -name build.make ); do  sed -i 's:/lib64:/lib:g' $file ; done
 
  for file in $( find ./ -name build.make ); do  sed -i 's:/lib64:/lib:g' $file ; done
 
  for file in $( find ./ -name *link.txt ); do sed -i 's:/lib64:/lib:g' $file ; done  
 
  for file in $( find ./ -name *link.txt ); do sed -i 's:/lib64:/lib:g' $file ; done  
 
  make
 
  make
 +
 +
for file in $( find ./ -name cmake_install.cmake ); do sed -i 's:/lib64:/lib:g' $file ; done
 +
make install
  
Before proceeding to make install, we need to again fix same problem as before the package was compiled. Again apply some seds and install the package:
+
Install the Package
  
for file in $( find ./ -name cmake_install.cmake ); do sed -i 's:/lib64:/lib:g' $file ; done
 
 
  make install
 
  make install
  
Line 78: Line 87:
 
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
 
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
 
     -DSYSCONF_INSTALL_DIR=/etc/kde \
 
     -DSYSCONF_INSTALL_DIR=/etc/kde \
 +
    -DLIB_INSTALL_DIR=/opt/kde4/lib64 \
 +
    -DCMAKE_BUILD_TYPE=Release \
 +
    -DCMAKE_C_FLAGS="${BUILD64}" \
 +
    -DCMAKE_CXX_FLAGS="${BUILD64}" \
 
     -DLIB_SUFFIX=64 \
 
     -DLIB_SUFFIX=64 \
    -DCMAKE_CXX_FLAGS=${BUILD64} \
 
    -DCMAKE_C_FLAGS=${BUILD64} \
 
 
     .. &&
 
     .. &&
 
  make
 
  make

Latest revision as of 13:57, 13 September 2009

Download Source: ftp://ftp.kde.org/pub/kde/stable/4.3.5/src/kdenetwork-4.3.5.tar.bz2

Dependencies

Required

Optional

Runtime

Non-Multilib

Compile the package:

mkdir -v build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
    -DSYSCONF_INSTALL_DIR=/etc/kde \
    -DLIB_INSTALL_DIR=/opt/kde4/lib \
    -DCMAKE_BUILD_TYPE=Release \
    -DLIB_SUFFIX= \
    ..&&
make

Install the package:

make install

Multilib

32Bit

mkdir -v build &&
cd build &&
USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
    -DSYSCONF_INSTALL_DIR=/etc/kde \
    -DLIB_INSTALL_DIR=/opt/kde4/lib \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD32}" \
    -DCMAKE_CXX_FLAGS="${BUILD32}" \
    -DLIB_SUFFIX= \
    .. &&
make

If kdebase fails "which it has done to me(oppiz) on several builds" let it error out with the ld lib64 type error. Start with clean source, run the cmake command above then switch to the below to make and make install. This is not proper and should not be done. It needs to be fixed and the problem located.

for file in $( find ./ -name build.make ); do  sed -i 's:/lib64:/lib:g' $file ; done
for file in $( find ./ -name *link.txt ); do sed -i 's:/lib64:/lib:g' $file ; done 
make

for file in $( find ./ -name cmake_install.cmake ); do sed -i 's:/lib64:/lib:g' $file ; done
make install

Install the Package

make install

N32

64Bit

mkdir -v build &&
cd build &&
USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
    -DSYSCONF_INSTALL_DIR=/etc/kde \
    -DLIB_INSTALL_DIR=/opt/kde4/lib64 \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_FLAGS="${BUILD64}" \
    -DCMAKE_CXX_FLAGS="${BUILD64}" \
    -DLIB_SUFFIX=64 \
    .. &&
make

Install the Package

make install