Difference between revisions of "KdeMultimedia"
From CBLFS
Jump to navigationJump to searchChipster19 (talk | contribs) m |
|||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{| style="text-align: left; background-color: AliceBlue;" | {| style="text-align: left; background-color: AliceBlue;" | ||
− | |- | + | |-valign="top" |
!Download Source: | !Download Source: | ||
| ftp://ftp.kde.org/pub/kde/stable/{{KDE-Version}}/src/kdemultimedia-{{KDE-Version}}.tar.bz2 | | ftp://ftp.kde.org/pub/kde/stable/{{KDE-Version}}/src/kdemultimedia-{{KDE-Version}}.tar.bz2 | ||
− | |- | + | |-valign="top" |
− | !Required Patch: | + | !Required Patch: |
| http://svn.cross-lfs.org/svn/repos/patches/kdemultimedia/kdemultimedia-{{KDE-Version}}-libtunepimp_0.5.x-1.patch | | http://svn.cross-lfs.org/svn/repos/patches/kdemultimedia/kdemultimedia-{{KDE-Version}}-libtunepimp_0.5.x-1.patch | ||
|} | |} | ||
---- | ---- | ||
+ | |||
+ | {{Blank-Package-Introduction}} | ||
== Dependencies == | == Dependencies == | ||
Line 18: | Line 20: | ||
* [[LibXML2]] | * [[LibXML2]] | ||
* [[ALSA]] | * [[ALSA]] | ||
+ | * [[Audio File]] ([[Audio File]] is needed to play or save .WAV audio files) | ||
+ | * [[Libmad]] (Not required to play MP3s, but the KDE folks recommend it for its superior playback quality) | ||
+ | * [[Xine Libraries]] (The KDE multimedia system uses XINE for basic video support) | ||
+ | * [[Ghostscript]] (Almost all of KDE benefits from Ghostscript due to the rendering and filtering it provides) | ||
=== Optional === | === Optional === | ||
* [[Akode]] | * [[Akode]] | ||
* [[CDParanoia-III]] | * [[CDParanoia-III]] | ||
+ | * [[cdrtools]] | ||
* [[LAME]] | * [[LAME]] | ||
− | * [[ | + | * [[libvorbis]] |
− | * [[ | + | * [[Speex]] |
* [[FLAC]] (with [[libogg]] support) | * [[FLAC]] (with [[libogg]] support) | ||
* [[GStreamer]] | * [[GStreamer]] | ||
* [[Theora]] | * [[Theora]] | ||
* [[TagLib]] | * [[TagLib]] | ||
− | * [[TunePimp]] | + | * [[SDL]] (Required by some Noatun Plugins) |
+ | * [[TunePimp]] (JuK can use [[LibMusicBrainz]] in conjuction with [[TunePimp]] to guess the tags for music in your library) | ||
+ | * [[LibMusicBrainz]] (JuK can use [[LibMusicBrainz]] in conjuction with [[TunePimp]] to guess the tags for music in your library) | ||
== Non-Multilib == | == Non-Multilib == |
Latest revision as of 05:14, 14 March 2008
Contents
Introduction to KdeMultimedia
Project Homepage: Unknown
Dependencies
Required
Recommended
- libjpeg
- LibXML2
- ALSA
- Audio File (Audio File is needed to play or save .WAV audio files)
- Libmad (Not required to play MP3s, but the KDE folks recommend it for its superior playback quality)
- Xine Libraries (The KDE multimedia system uses XINE for basic video support)
- Ghostscript (Almost all of KDE benefits from Ghostscript due to the rendering and filtering it provides)
Optional
- Akode
- CDParanoia-III
- cdrtools
- LAME
- libvorbis
- Speex
- FLAC (with libogg support)
- GStreamer
- Theora
- TagLib
- SDL (Required by some Noatun Plugins)
- TunePimp (JuK can use LibMusicBrainz in conjuction with TunePimp to guess the tags for music in your library)
- LibMusicBrainz (JuK can use LibMusicBrainz in conjuction with TunePimp to guess the tags for music in your library)
Non-Multilib
Compile the package:
patch -Np1 -i ../kdemultimedia-3.5.10-libtunepimp_0.5.x-1.patch && ./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 && patch -Np1 -i ../kdemultimedia-3.5.10-libtunepimp_0.5.x-1.patch && 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 && patch -Np1 -i ../kdemultimedia-3.5.10-libtunepimp_0.5.x-1.patch && 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 && patch -Np1 -i ../kdemultimedia-3.5.10-libtunepimp_0.5.x-1.patch && 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