Difference between revisions of "KDE4/kdebase-workspace"

From CBLFS
Jump to navigationJump to search
 
(13 intermediate revisions by 4 users not shown)
Line 6: Line 6:
  
 
== Dependencies ==
 
== Dependencies ==
 +
 +
=== Required ===
 +
* [[KDE4/KdeLibs]]
 +
* [[KDE4/KdeLibs-experimental]]
 +
* [[KDE4/KdePimLibs]]
 +
* [[QImageBlitz]]
  
 
=== Recommended ===
 
=== Recommended ===
 +
* [[Bluez-libs]]
 
* [[NetworkManager]]
 
* [[NetworkManager]]
 +
* [[libcaptury]]
 +
* [[lm_sensors]]
 +
* [[Glib2]]
 +
* [[XMMS]]
 +
* [[libxklavier]]
 +
* [[Bluez-libs]]
 +
* [[Libusb]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 16: Line 30:
 
  mkdir -v build &&
 
  mkdir -v build &&
 
  cd build &&
 
  cd build &&
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} .. &&
+
  cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} -DSYSCONF_INSTALL_DIR=/etc/kde .. &&
 
  make
 
  make
  
Line 68: Line 82:
  
 
  make install
 
  make install
 +
 +
== Configuring ==
 +
 +
If you install [[Linux-PAM]], it will be used. Then you should create pam.d config to enable KDM logins:
 +
 +
cat > /etc/pam.d/kde << "EOF"
 +
#%PAM-1.0
 +
auth          required        pam_nologin.so
 +
auth          include        system-auth
 +
 +
account        include        system-auth
 +
 +
password      include        system-auth
 +
 +
session        include        system-auth
 +
EOF

Latest revision as of 16:15, 20 February 2010

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

Dependencies

Required

Recommended

Non-Multilib

Compile the package:

mkdir -v build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} -DSYSCONF_INSTALL_DIR=/etc/kde .. &&
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 \
    -DCMAKE_CXX_FLAGS=${BUILD32} \
    -DCMAKE_C_FLAGS=${BUILD32} \
    .. &&
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_SUFFIX=64 \
    -DCMAKE_CXX_FLAGS=${BUILD64} \
    -DCMAKE_C_FLAGS=${BUILD64} \
    .. &&
make

Install the Package

make install

Configuring

If you install Linux-PAM, it will be used. Then you should create pam.d config to enable KDM logins:

cat > /etc/pam.d/kde << "EOF"
#%PAM-1.0
auth           required        pam_nologin.so
auth           include         system-auth

account        include         system-auth

password       include         system-auth

session        include         system-auth
EOF