diff options
author | Ben de Groot <yngwin@gentoo.org> | 2013-02-08 11:40:02 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2013-02-08 11:40:02 +0000 |
commit | 3732e00d4a2e603b1c0c445437a3a99c6676784c (patch) | |
tree | d2dbb4c8e72d8de0dbcbcdbc48d8fd84ea091009 /media-sound/cantata | |
parent | Stable for alpha, wrt bug #455930 (diff) | |
download | gentoo-2-3732e00d4a2e603b1c0c445437a3a99c6676784c.tar.gz gentoo-2-3732e00d4a2e603b1c0c445437a3a99c6676784c.tar.bz2 gentoo-2-3732e00d4a2e603b1c0c445437a3a99c6676784c.zip |
version bump, bug #456106
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-sound/cantata')
-rw-r--r-- | media-sound/cantata/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/cantata/cantata-0.9.2.ebuild | 62 |
2 files changed, 69 insertions, 2 deletions
diff --git a/media-sound/cantata/ChangeLog b/media-sound/cantata/ChangeLog index ab1a829fcc43..da626193b661 100644 --- a/media-sound/cantata/ChangeLog +++ b/media-sound/cantata/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/cantata -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/ChangeLog,v 1.10 2012/12/23 16:19:47 dastergon Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/ChangeLog,v 1.11 2013/02/08 11:40:02 yngwin Exp $ + +*cantata-0.9.2 (08 Feb 2013) + + 08 Feb 2013; Ben de Groot <yngwin@gentoo.org> +cantata-0.9.2.ebuild: + version bump, bug #456106 *cantata-0.9.1 (23 Dec 2012) diff --git a/media-sound/cantata/cantata-0.9.2.ebuild b/media-sound/cantata/cantata-0.9.2.ebuild new file mode 100644 index 000000000000..6721f0f68de7 --- /dev/null +++ b/media-sound/cantata/cantata-0.9.2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/cantata-0.9.2.ebuild,v 1.1 2013/02/08 11:40:02 yngwin Exp $ + +EAPI=5 +KDE_REQUIRED="optional" +inherit kde4-base + +DESCRIPTION="A featureful and configurable Qt4 client for the music player daemon (MPD)" +HOMEPAGE="http://kde-apps.org/content/show.php?content=147733" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64 ~x86" +IUSE="kde mtp phonon replaygain webkit" +REQUIRED_USE="mtp? ( kde )" + +DEPEND=" + x11-libs/qt-core:4 + x11-libs/qt-dbus:4 + x11-libs/qt-gui:4 + kde? ( + media-libs/taglib[asf,mp4] + media-libs/taglib-extras + mtp? ( media-libs/libmtp ) + ) + phonon? ( || ( media-libs/phonon x11-libs/qt-phonon:4 ) ) + replaygain? ( + media-libs/speex + media-libs/taglib[asf,mp4] + media-libs/taglib-extras + media-sound/mpg123 + virtual/ffmpeg + ) + webkit? ( x11-libs/qt-webkit:4 ) +" +RDEPEND="${DEPEND} + $(add_kdebase_dep oxygen-icons) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_enable kde) + $(cmake-utils_use_enable phonon) + $(cmake-utils_use_enable replaygain FFMPEG) + $(cmake-utils_use_enable replaygain MPG123) + $(cmake-utils_use_enable replaygain SPEEXDSP) + $(cmake-utils_use_enable mtp) + ) + + # kde fails to build without taglib + # taglib is required to enable replaygain + if use kde || use replaygain; then + mycmakeargs+=( + -DENABLE_TAGLIB=ON + -DENABLE_TAGLIB_EXTRAS=ON + ) + fi + + kde4-base_src_configure +} |