diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-10-12 13:28:03 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-10-12 13:28:03 +0000 |
commit | f6a29cb43c7bafd0c042a1686b5505ae595ae754 (patch) | |
tree | e77f33e379fe26f19bd019041ab84144df1b5460 /kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild | |
parent | Clock skew fix for AMD64 X2, and update to Linux 2.6.13.4 (diff) | |
download | gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.tar.gz gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.tar.bz2 gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.zip |
New version.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild')
-rw-r--r-- | kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild b/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild new file mode 100644 index 000000000000..30437e93b5b6 --- /dev/null +++ b/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild,v 1.1 2005/10/12 13:26:06 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE multimedia apps: noatun, kscd, juk..." + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="alsa audiofile encode flac gstreamer jack mp3 musicbrainz speex theora vorbis xine" + +DEPEND="~kde-base/kdebase-${PV} + media-sound/cdparanoia + media-libs/libsamplerate + audiofile? ( media-libs/audiofile ) + mp3? ( media-libs/libmad ) + jack? ( media-sound/jack-audio-connection-kit ) + flac? ( media-libs/flac ) + encode? ( media-sound/lame ) + vorbis? ( media-sound/vorbis-tools ) + xine? ( >=media-libs/xine-lib-1.0 ) + alsa? ( media-libs/alsa-lib ) + speex? ( media-libs/speex ) + theora? ( media-libs/libtheora ) + gstreamer? ( >=media-libs/gstreamer-0.8 + >=media-libs/gst-plugins-0.8 ) + >=media-libs/taglib-1.2 + musicbrainz? ( media-libs/tunepimp media-libs/musicbrainz )" + +RDEPEND="${DEPEND} + gstreamer? ( mp3? ( >=media-plugins/gst-plugins-mad-0.8 ) + vorbis? ( >=media-plugins/gst-plugins-ogg-0.8 + >=media-plugins/gst-plugins-vorbis-0.8 ) + flac? ( >=media-plugins/gst-plugins-flac-0.8 ) )" + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_unpack() { + kde_src_unpack + + # Fix for 64 bit systems. Applied for 3.5. + epatch "${FILESDIR}/kdemultimedia-3.4.0-amd64.patch" + + # Configure patch. Applied for 3.5. + epatch "${FILESDIR}/kdemultimedia-3.4-configure.patch" + + # For the configure patch. + make -f admin/Makefile.common || die +} + +src_compile() { + use speex && myconf="--with-extra-includes=/usr/include/speex" + + myconf="${myconf} --with-cdparanoia --enable-cdparanoia + $(use_with alsa arts-alsa) $(use_with alsa) + $(use_with vorbis) $(use_with encode lame) + $(use_with flac) $(use_with speex) + $(use_with mp3 libmad) $(use_with jack) + $(use_with xine) $(use_with musicbrainz)" + + kde_src_compile +} |