diff options
author | Johannes Huber <johu@gentoo.org> | 2012-02-15 11:53:09 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-02-15 11:53:09 +0000 |
commit | 56bbed7426aab96599329d18af209be530fa48c8 (patch) | |
tree | 75cf7f36b99f5a93c27e8c5ef97ff58d6aff7cf4 /media-sound/kradio | |
parent | Version bump mako to 0.6.2. (diff) | |
download | gentoo-2-56bbed7426aab96599329d18af209be530fa48c8.tar.gz gentoo-2-56bbed7426aab96599329d18af209be530fa48c8.tar.bz2 gentoo-2-56bbed7426aab96599329d18af209be530fa48c8.zip |
Version bump.
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/kradio')
-rw-r--r-- | media-sound/kradio/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/kradio/kradio-4.0.3.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/media-sound/kradio/ChangeLog b/media-sound/kradio/ChangeLog index a6f6b82b03b1..15f0ae98e83d 100644 --- a/media-sound/kradio/ChangeLog +++ b/media-sound/kradio/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/kradio -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.30 2011/12/01 21:55:03 dilfridge Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.31 2012/02/15 11:53:09 johu Exp $ + +*kradio-4.0.3 (15 Feb 2012) + + 15 Feb 2012; Johannes Huber <johu@gentoo.org> +kradio-4.0.3.ebuild: + Version bump. 01 Dec 2011; Andreas K. Huettel <dilfridge@gentoo.org> kradio-4.0.2.ebuild, +files/kradio-4.0.2-libav.patch: diff --git a/media-sound/kradio/kradio-4.0.3.ebuild b/media-sound/kradio/kradio-4.0.3.ebuild new file mode 100644 index 000000000000..ab9cf4a5b746 --- /dev/null +++ b/media-sound/kradio/kradio-4.0.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-4.0.3.ebuild,v 1.1 2012/02/15 11:53:09 johu Exp $ + +EAPI=4 + +KDE_LINGUAS="cs de es is it pl pt pt_BR ru tr uk" +inherit kde4-base + +MY_P=${PN}4-${PV/_/-} + +DESCRIPTION="kradio is a radio tuner application for KDE" +HOMEPAGE="http://kradio.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="4" +IUSE="alsa debug encode ffmpeg lirc +mp3 +vorbis v4l" + +DEPEND=" + media-libs/libsndfile + alsa? ( media-libs/alsa-lib ) + lirc? ( app-misc/lirc ) + mp3? ( media-sound/lame ) + vorbis? ( + media-libs/libvorbis + media-libs/libogg + ) + ffmpeg? ( + >=media-libs/libmms-0.4 + virtual/ffmpeg + ) +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with alsa ALSA) + $(cmake-utils_use_with mp3 LAME) + $(cmake-utils_use_with vorbis OGG_VORBIS) + $(cmake-utils_use_with lirc LIRC) + $(cmake-utils_use_with ffmpeg FFMPEG) + $(cmake-utils_use_with v4l V4L2) + ) + + kde4-base_src_configure +} |