public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia: ChangeLog kdemultimedia-3.5.8.ebuild
@ 2007-10-19 22:29 Wulf Krueger (philantrop)
  0 siblings, 0 replies; 2+ messages in thread
From: Wulf Krueger (philantrop) @ 2007-10-19 22:29 UTC (permalink / raw
  To: gentoo-commits

philantrop    07/10/19 22:29:38

  Modified:             ChangeLog
  Added:                kdemultimedia-3.5.8.ebuild
  Log:
  Bump to KDE 3.5.8.
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.256                kde-base/kdemultimedia/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?rev=1.256&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?rev=1.256&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?r1=1.255&r2=1.256

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog	3 Oct 2007 01:27:39 -0000	1.255
+++ ChangeLog	19 Oct 2007 22:29:37 -0000	1.256
@@ -1,6 +1,12 @@
 # ChangeLog for kde-base/kdemultimedia
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.255 2007/10/03 01:27:39 redhatter Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.256 2007/10/19 22:29:37 philantrop Exp $
+
+*kdemultimedia-3.5.8 (19 Oct 2007)
+
+  19 Oct 2007; Wulf C. Krueger <philantrop@gentoo.org>
+  +kdemultimedia-3.5.8.ebuild:
+  Bump to KDE 3.5.8.
 
   02 Oct 2007; Stuart Longland <redhatter@gentoo.org>
   kdemultimedia-3.5.7.ebuild:



1.1                  kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild?rev=1.1&content-type=text/plain

Index: kdemultimedia-3.5.8.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild,v 1.1 2007/10/19 22:29:37 philantrop Exp $

inherit kde-dist flag-o-matic

DESCRIPTION="KDE multimedia apps: Noatun, KsCD, Juk..."

KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="akode alsa audiofile encode flac gstreamer mp3 theora vorbis xine"

DEPEND="media-sound/cdparanoia
	akode? ( media-libs/akode )
	>=media-libs/taglib-1.2
	audiofile? ( media-libs/audiofile )
	xine? ( >=media-libs/xine-lib-1.0 )
	alsa? ( media-libs/alsa-lib )
	theora? (
		media-libs/libvorbis
		media-libs/libtheora )
	gstreamer? ( =media-libs/gstreamer-0.10*
				 =media-libs/gst-plugins-base-0.10* )
	encode? ( mp3? ( media-sound/lame )
			  vorbis? ( media-sound/vorbis-tools )
			  flac? ( >=media-libs/flac-1.1.2 ) )
	!arts? ( !gstreamer? ( media-libs/akode ) )"

RDEPEND="${DEPEND}
	gstreamer? ( mp3? ( =media-plugins/gst-plugins-mad-0.10* )
			 vorbis? ( =media-plugins/gst-plugins-ogg-0.10*
					   =media-plugins/gst-plugins-vorbis-0.10* )
			 flac? ( =media-plugins/gst-plugins-flac-0.10* ) )"

DEPEND="${DEPEND}
	dev-util/pkgconfig"

PATCHES="${FILESDIR}/kdemultimedia-3.5.5+flac-1.1.3.patch"

pkg_setup() {
	kde_pkg_setup
	if ! use arts && ! use gstreamer && ! use akode ; then
		ewarn "No audio backend chosen. Defaulting to media-libs/akode."
	fi
}

src_compile() {
	local myconf="--with-cdparanoia
				--with-taglib
				--with-akode
				$(use_with alsa)
				$(use_with audiofile)
				$(use_with gstreamer)
				$(use_with xine)
				$(use_with theora)
				--without-musicbrainz"

	# encoding can happen through:
	# - kio_audiocd (based on libflac for flac,
	#	on libvorbis for vorbis, on the lame binary for mp3)
	# - kaudiocreator (based on the flac binary for flac,
	#	on the lame binary for mp3, on the oggenc binary for vorbis)
	# - krec (based on libvorbis for vorbis,
	#	on libmp3lame for mp3)
	if use encode; then
		myconf="${myconf}
				$(use_with mp3 lame)
				$(use_with vorbis)
				$(use_with flac)"
	else
		myconf="${myconf}
				--without-lame
				--without-vorbis
				--without-flac"
	fi

	if ! use arts && ! use gstreamer ; then
		myconf="${myconf} --with-akokde"
	else
		if ! use akode ; then
			# work around broken configure
			export include_akode_ffmpeg_FALSE='#'
			export include_akode_mpc_FALSE='#'
			export include_akode_mpeg_FALSE='#'
			export include_akode_xiph_FALSE='#'
		fi
		myconf="${myconf} $(use_with akode)"
	fi

	# fix bug 128884
	filter-flags -fomit-frame-pointer

	# Not used anymore and scheduled for removal.
	export DO_NOT_COMPILE="${DO_NOT_COMPILE} mpeglib mpeglib_artsplug"

	rm configure
	kde_src_compile
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia: ChangeLog kdemultimedia-3.5.8.ebuild
@ 2007-11-03 20:10 Wulf Krueger (philantrop)
  0 siblings, 0 replies; 2+ messages in thread
From: Wulf Krueger (philantrop) @ 2007-11-03 20:10 UTC (permalink / raw
  To: gentoo-commits

philantrop    07/11/03 20:10:21

  Modified:             ChangeLog kdemultimedia-3.5.8.ebuild
  Log:
  Added a patch for BSD compatibility.
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.257                kde-base/kdemultimedia/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?rev=1.257&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?rev=1.257&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/ChangeLog?r1=1.256&r2=1.257

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog	19 Oct 2007 22:29:37 -0000	1.256
+++ ChangeLog	3 Nov 2007 20:10:20 -0000	1.257
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/kdemultimedia
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.256 2007/10/19 22:29:37 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.257 2007/11/03 20:10:20 philantrop Exp $
+
+  03 Nov 2007; Wulf C. Krueger <philantrop@gentoo.org>
+  +files/kdemultimedia-kioslaves-3.5.8-freebsd.patch,
+  kdemultimedia-3.5.8.ebuild:
+  Added a patch for BSD compatibility.
 
 *kdemultimedia-3.5.8 (19 Oct 2007)
 



1.2                  kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild?r1=1.1&r2=1.2

Index: kdemultimedia-3.5.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdemultimedia-3.5.8.ebuild	19 Oct 2007 22:29:37 -0000	1.1
+++ kdemultimedia-3.5.8.ebuild	3 Nov 2007 20:10:20 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild,v 1.1 2007/10/19 22:29:37 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.5.8.ebuild,v 1.2 2007/11/03 20:10:20 philantrop Exp $
 
 inherit kde-dist flag-o-matic
 
@@ -34,7 +34,8 @@
 DEPEND="${DEPEND}
 	dev-util/pkgconfig"
 
-PATCHES="${FILESDIR}/kdemultimedia-3.5.5+flac-1.1.3.patch"
+PATCHES="${FILESDIR}/kdemultimedia-3.5.5+flac-1.1.3.patch
+		${FILESDIR}/kdemultimedia-kioslaves-3.5.8-freebsd.patch"
 
 pkg_setup() {
 	kde_pkg_setup



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-11-03 20:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-19 22:29 [gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia: ChangeLog kdemultimedia-3.5.8.ebuild Wulf Krueger (philantrop)
  -- strict thread matches above, loose matches on Subject: below --
2007-11-03 20:10 Wulf Krueger (philantrop)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox