KdeNetwork: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
 
(8 intermediate revisions by 5 users not shown)
Line 3: Line 3:
!Download Source:
!Download Source:
| ftp://ftp.kde.org/pub/kde/stable/{{KDE-Version}}/src/kdenetwork-{{KDE-Version}}.tar.bz2
| ftp://ftp.kde.org/pub/kde/stable/{{KDE-Version}}/src/kdenetwork-{{KDE-Version}}.tar.bz2
|-
!Download Patch:
| http://svn.cross-lfs.org/svn/repos/patches/kdenetwork/kdenetwork-{{KDE-Version}}-gcc_4.4-1.patch
|}
|}


----
----
{{Blank-Package-Introduction}}


== Dependencies ==
== Dependencies ==
Line 19: Line 24:


=== Optional ===
=== Optional ===
* [[Speex]]
* [[PPP]]
* [[PPP]]
* [[XMMS]]
* [[XMMS]]
Line 27: Line 33:
* [[libgadu]]
* [[libgadu]]
* [[Valgrind]]
* [[Valgrind]]
* [[Meanwhile]]
* [[ortp]]
* [[GSM]]


== Non-Multilib ==
== Non-Multilib ==
Apply the following patch if your system is using GCC 4.4:
patch -Np1 -i ../kdenetwork-{{KDE-Version}}-gcc_4.4-1.patch


Compile the package:
Compile the package:
Line 43: Line 56:


=== 32Bit ===
=== 32Bit ===
Apply the following patch if your system is using GCC 4.4:
patch -Np1 -i ../kdenetwork-{{KDE-Version}}-gcc_4.4-1.patch


Compile the package:
Compile the package:
Line 59: Line 76:


=== N32 ===
=== N32 ===
Apply the following patch if your system is using GCC 4.4:
patch -Np1 -i ../kdenetwork-{{KDE-Version}}-gcc_4.4-1.patch


Compile the package:
Compile the package:
Line 75: Line 96:


=== 64Bit ===
=== 64Bit ===
Apply the following patch if your system is using GCC 4.4:
patch -Np1 -i ../kdenetwork-{{KDE-Version}}-gcc_4.4-1.patch


Compile the package:
Compile the package:
Line 94: Line 119:
=== Bootscript ===
=== Bootscript ===


Install the bootscript for lisa from the [[blfs-bootscripts]] package with the following command:
Install the bootscript for lisa from the [[bootscripts]] package with the following command:


  make install-lisa
  make install-lisa

Latest revision as of 15:17, 15 July 2009

Download Source: ftp://ftp.kde.org/pub/kde/stable/3.5.10/src/kdenetwork-3.5.10.tar.bz2
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/kdenetwork/kdenetwork-3.5.10-gcc_4.4-1.patch

Introduction to KdeNetwork

Project Homepage: Unknown

Dependencies

Required

Optional

Non-Multilib

Apply the following patch if your system is using GCC 4.4:

patch -Np1 -i ../kdenetwork-3.5.10-gcc_4.4-1.patch

Compile the package:

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

Install the package

make install

Multilib

32Bit

Apply the following patch if your system is using GCC 4.4:

patch -Np1 -i ../kdenetwork-3.5.10-gcc_4.4-1.patch

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

Apply the following patch if your system is using GCC 4.4:

patch -Np1 -i ../kdenetwork-3.5.10-gcc_4.4-1.patch

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

Apply the following patch if your system is using GCC 4.4:

patch -Np1 -i ../kdenetwork-3.5.10-gcc_4.4-1.patch

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

Configuring

Bootscript

Install the bootscript for lisa from the bootscripts package with the following command:

make install-lisa