Difference between revisions of "K3b"

From CBLFS
Jump to navigationJump to search
 
(6 intermediate revisions by 5 users not shown)
Line 3: Line 3:
 
!Download Source:
 
!Download Source:
 
| http://prdownloads.sourceforge.net/k3b/k3b-{{K3b-Version}}.tar.bz2
 
| http://prdownloads.sourceforge.net/k3b/k3b-{{K3b-Version}}.tar.bz2
 +
|}
 +
{| style="text-align: left; background-color: AliceBlue;"
 +
|-
 +
!Download Locales-Source:
 +
| http://prdownloads.sourceforge.net/k3b/k3b-i18n-{{K3b-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
  
{{Package-Introduction|K3b was created to be a feature-rich and easy to handle CD and DVD burning application. It is the main CD/DVD burning application for [[KDE]]. For a feature list, see http://k3b.plainblack.com/about.|http://k3b.plainblack.com/}}
+
{{Package-Introduction|K3b was created to be a feature-rich and easy to handle CD and DVD burning application. It is the main CD/DVD burning application for [[KDE3]]. For a feature list, see http://k3b.plainblack.com/about.|http://k3b.plainblack.com/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 13: Line 18:
 
=== Required ===
 
=== Required ===
 
* [[KdeLibs]]
 
* [[KdeLibs]]
 +
 
=== Recommended ===
 
=== Recommended ===
 +
* [[libjpeg]]
 
* [[KdeBase]]
 
* [[KdeBase]]
* [[libjpeg]]
 
 
* [[KdeMultimedia]]
 
* [[KdeMultimedia]]
  
Line 27: Line 33:
 
* [[libmad]]
 
* [[libmad]]
 
* [[libMusicBrainz]]
 
* [[libMusicBrainz]]
 +
* [[libogg]]
 
* [[libvorbis]]
 
* [[libvorbis]]
 
* [[LibXML2]]
 
* [[LibXML2]]
Line 41: Line 48:
  
 
=== Required Runtime ===
 
=== Required Runtime ===
 +
* [[Cdrdao]]
 
* [[Cdrtools]]
 
* [[Cdrtools]]
* [[dvd-rw-tools]]
+
* [[dvd+rw-tools]]
* [[Cdrdao]]
+
 
 
=== Required Runtime (For Dvd Ripping and Encoding) ===
 
=== Required Runtime (For Dvd Ripping and Encoding) ===
 +
* [[libdvdread]]
 +
* [[libdvdcss]]
 
* [[Transcode]]
 
* [[Transcode]]
 
* [[XviD]]
 
* [[XviD]]
* [[libdvdread]]
 
* [[libdvdcss]]
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 54: Line 62:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=${KDE_PREFIX} \
+
  ./configure --prefix=$(kde-config --prefix) \
 
     --sysconfdir=/etc/kde \
 
     --sysconfdir=/etc/kde \
 
     --disable-debug \
 
     --disable-debug \
Line 61: Line 69:
  
 
Install the package
 
Install the package
 +
 +
make install
 +
 +
Compile the Locales-package:
 +
 +
cd ../k3b-i18n-{{K3b-Version}}
 +
 +
./configure --prefix=$(kde-config --prefix) \
 +
    --sysconfdir=/etc/kde \
 +
    --disable-debug \
 +
    --disable-dependency-tracking &&
 +
make
 +
 +
Install the Locales-package
  
 
  make install
 
  make install
Line 113: Line 135:
  
 
  make install
 
  make install
 +
 +
[[Category:CD/DVD Utilities]]

Latest revision as of 18:30, 27 June 2009

Download Source: http://prdownloads.sourceforge.net/k3b/k3b-1.0.5.tar.bz2
Download Locales-Source: http://prdownloads.sourceforge.net/k3b/k3b-i18n-1.0.5.tar.bz2

Introduction to K3b

K3b was created to be a feature-rich and easy to handle CD and DVD burning application. It is the main CD/DVD burning application for KDE3. For a feature list, see http://k3b.plainblack.com/about.

Project Homepage: http://k3b.plainblack.com/

Dependencies

Required

Recommended

Optional

Required Runtime

Required Runtime (For Dvd Ripping and Encoding)

Non-Multilib

Compile the package:

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

Install the package

make install

Compile the Locales-package:

cd ../k3b-i18n-1.0.5
./configure --prefix=$(kde-config --prefix) \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the Locales-package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install