Difference between revisions of "KdePim"

From CBLFS
Jump to navigationJump to search
m
m
Line 5: Line 5:
 
|-
 
|-
 
!Download Patch:
 
!Download Patch:
| http://svn.cross-lfs.org/svn/repos/patches/kdepim-3.5.10/kdepim-3.5.10-gcc-4.4-1.patch
+
| http://svn.cross-lfs.org/svn/repos/patches/kdepim-3.5.10/kdepim-3.5.10-gcc-4.4-2.patch
 
|}
 
|}
  
Line 40: Line 40:
 
== Non-Multilib ==
 
== Non-Multilib ==
  
Apply this patch only if you use gcc-4.4
+
Apply this patch only if you use gcc-4.4. At this time patch the won't apply cleanly you have to patch the memvector.tcc by hand but its only four lines of text.
  
  patch -Np1 -i ../kdepim-3.5.10-gcc-4.4-1.patch
+
  patch -Np1 -i ../kdepim-3.5.10-gcc-4.4-2.patch
  
 
Compile the package:
 
Compile the package:

Revision as of 11:35, 15 July 2009

Download Source: ftp://ftp.kde.org/pub/kde/stable/3.5.10/src/kdepim-3.5.10.tar.bz2
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/kdepim-3.5.10/kdepim-3.5.10-gcc-4.4-2.patch

Introduction to KdePim

Project Homepage: Unknown

Dependencies

Required

Recommended

Optional

Additional keys

If you want to try full text indexing, add to configure

--enable-indexlib

Non-Multilib

Apply this patch only if you use gcc-4.4. At this time patch the won't apply cleanly you have to patch the memvector.tcc by hand but its only four lines of text.

patch -Np1 -i ../kdepim-3.5.10-gcc-4.4-2.patch

Compile the package:

./configure --prefix=$KDE_PREFIX --sysconfdir=/etc/kde \
    --disable-debug --disable-dependency-tracking &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export USE_ARCH=32 &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
    ./configure --prefix=$KDE_PREFIX --sysconfdir=/etc/kde --disable-debug \
    --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib \
    --with-qt-libraries=${QTDIR}/lib --enable-libsuffix=none &&
make

Install the package

make install &&
unset USE_ARCH

N32

Compile the package:

export USE_ARCH=n32 &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
    ./configure --prefix=$KDE_PREFIX --sysconfdir=/etc/kde --libdir=${KDE_PREFIX}/lib32
    --disable-debug --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib32 \
    --with-qt-libraries=${QTDIR}/lib32 --enable-libsuffix=32 &&
make

Install the package

make install &&
unset USE_ARCH

64Bit

Compile the package:

export USE_ARCH=64 &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
    ./configure --prefix=$KDE_PREFIX --sysconfdir=/etc/kde --libdir=${KDE_PREFIX}/lib64 \
    --disable-debug --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib64 \
    --with-qt-libraries=${QTDIR}/lib64 --enable-libsuffix=64 &&
make

Install the package

make install &&
unset USE_ARCH