public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Wulf Krueger (philantrop)" <philantrop@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia: ChangeLog kdemultimedia-3.5.8.ebuild
Date: Fri, 19 Oct 2007 22:29:38 +0000	[thread overview]
Message-ID: <E1Ij0La-00072z-A5@stork.gentoo.org> (raw)

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



             reply	other threads:[~2007-10-19 22:40 UTC|newest]

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1Ij0La-00072z-A5@stork.gentoo.org \
    --to=philantrop@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox