Difference between revisions of "KDE4/KdePimLibs"

From CBLFS
Jump to navigationJump to search
(Required)
 
(16 intermediate revisions by 5 users not shown)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://kde.mirrors.tds.net/pub/kde/stable/4.0.0/src/kdepimlibs-4.0.0.tar.bz2
+
| {{KDE4-Mirror}}kdepimlibs-{{KDE4-Version}}.tar.bz2
 
|}
 
|}
  
Line 8: Line 8:
  
 
=== Required ===
 
=== Required ===
 
 
* [[KDE4/KdeLibs]]
 
* [[KDE4/KdeLibs]]
 +
* [[Akonadi]]
 
* [[Boost]]
 
* [[Boost]]
 +
* [[GPGME]]
 +
* [[CyrusSASL]]
 +
* [[Libical]]
  
 
=== Optional ===
 
=== Optional ===
 
* [[CyrusSASL]]
 
* [[GPGME]]
 
 
* [[OpenLDAP]]
 
* [[OpenLDAP]]
 
== Configuration Information ==
 
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 25: Line 22:
 
Compile the package:
 
Compile the package:
  
  mkdir -vv build &&
+
  mkdir -v build &&
 
  cd build &&
 
  cd build &&
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} .. &&
+
  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 38: Line 40:
 
=== 32Bit ===
 
=== 32Bit ===
  
  mkdir -vv build &&
+
Compile the package:
 +
 
 +
  mkdir -v build &&
 
  cd build &&
 
  cd build &&
 
  USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 
  USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 
  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 \
 +
    -DLIB_SUFFIX= \
 
     .. &&
 
     .. &&
 
  make
 
  make
 +
 +
If kdepimlibs 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 *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
 
Install the Package
Line 56: Line 75:
 
=== 64Bit ===
 
=== 64Bit ===
  
  mkdir -vv build &&
+
Compile the package:
 +
 
 +
  mkdir -v build &&
 
  cd build &&
 
  cd build &&
 
  USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 
  USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 
  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 08:34, 22 April 2010

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

Dependencies

Required

Optional

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

Compile the package:

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 \
    -DLIB_SUFFIX= \
    .. &&
make

If kdepimlibs 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 *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

Compile the package:

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