diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-16 13:17:37 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-16 13:17:37 +0000 |
commit | bc194ba7a901d8dd078fadb41adefa3544e3f784 (patch) | |
tree | 39cc290dba831762d9ce8838582423baed4b1396 /media-sound/kradio | |
parent | New snapshot. (diff) | |
download | gentoo-2-bc194ba7a901d8dd078fadb41adefa3544e3f784.tar.gz gentoo-2-bc194ba7a901d8dd078fadb41adefa3544e3f784.tar.bz2 gentoo-2-bc194ba7a901d8dd078fadb41adefa3544e3f784.zip |
Fix building with FFmpeg >= 0.6 wrt #324279 by Alexis Ballier.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/kradio')
-rw-r--r-- | media-sound/kradio/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/kradio/kradio-4.0.0.ebuild | 20 |
2 files changed, 17 insertions, 10 deletions
diff --git a/media-sound/kradio/ChangeLog b/media-sound/kradio/ChangeLog index f7bf22b19f14..fa42963e761c 100644 --- a/media-sound/kradio/ChangeLog +++ b/media-sound/kradio/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/kradio -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.22 2009/06/02 10:43:55 scarabeus Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.23 2010/06/16 13:17:37 ssuominen Exp $ + + 16 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> kradio-4.0.0.ebuild: + Fix building with FFmpeg >= 0.6 wrt #324279 by Alexis Ballier. *kradio-4.0.0 (02 Jun 2009) diff --git a/media-sound/kradio/kradio-4.0.0.ebuild b/media-sound/kradio/kradio-4.0.0.ebuild index 6efba4233cb8..0450b1b5a21e 100644 --- a/media-sound/kradio/kradio-4.0.0.ebuild +++ b/media-sound/kradio/kradio-4.0.0.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-4.0.0.ebuild,v 1.1 2009/06/02 10:43:55 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-4.0.0.ebuild,v 1.2 2010/06/16 13:17:37 ssuominen Exp $ -EAPI="2" +EAPI=2 KDE_LINGUAS="cs de es pl pt ru uk" -inherit kde4-base +inherit flag-o-matic kde4-base -MY_P="${PN}4-${PV/_/-}" +MY_P=${PN}4-${PV/_/-} DESCRIPTION="kradio is a radio tuner application for KDE" HOMEPAGE="http://kradio.sourceforge.net/" @@ -34,15 +34,19 @@ DEPEND=" " RDEPEND="${DEPEND}" -S="${WORKDIR}/${MY_P}" +S=${WORKDIR}/${MY_P} src_configure() { - local mycmakeargs="$(cmake-utils_use_with alsa ALSA) + append-cppflags -D__STDC_CONSTANT_MACROS #324279 + + 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 v4l2 V4L2)" + $(cmake-utils_use_with v4l2 V4L2) + ) kde4-base_src_configure } |