Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/kradio: kradio-4.0.7.ebuild ChangeLog
Date: Thu, 31 Jan 2013 22:42:07
Message-Id: 20130131224202.E02722171D@flycatcher.gentoo.org
1 creffett 13/01/31 22:42:02
2
3 Modified: ChangeLog
4 Added: kradio-4.0.7.ebuild
5 Log:
6 Version bump wrt bug 454522
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42618354)
9
10 Revision Changes Path
11 1.35 media-sound/kradio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kradio/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kradio/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kradio/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 31 Aug 2012 11:09:17 -0000 1.34
24 +++ ChangeLog 31 Jan 2013 22:42:02 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/kradio
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.34 2012/08/31 11:09:17 johu Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.35 2013/01/31 22:42:02 creffett Exp $
31 +
32 +*kradio-4.0.7 (31 Jan 2013)
33 +
34 + 31 Jan 2013; Chris Reffett <creffett@g.o> +kradio-4.0.7.ebuild:
35 + Version bump wrt bug 454522
36
37 *kradio-4.0.6 (31 Aug 2012)
38
39
40
41
42 1.1 media-sound/kradio/kradio-4.0.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kradio/kradio-4.0.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kradio/kradio-4.0.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kradio-4.0.7.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-4.0.7.ebuild,v 1.1 2013/01/31 22:42:02 creffett Exp $
52
53 EAPI=5
54
55 KDE_LINGUAS_DIR=( po convert-presets/po )
56 PLUGINS=(
57 alsa-sound dbus gui-docking-menu gui-error-log gui-quickbar
58 gui-standard-display internetradio lirc oss-sound radio recording shortcuts
59 soundserver streaming timecontrol timeshifter v4lradio
60 )
61 KDE_LINGUAS="cs de es is it pl pt pt_BR ru sk tr uk"
62 inherit kde4-base
63
64 MY_P=${PN}4-${PV/_/-}
65
66 DESCRIPTION="kradio is a radio tuner application for KDE"
67 HOMEPAGE="http://kradio.sourceforge.net/"
68 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
69
70 LICENSE="GPL-2"
71 KEYWORDS="~amd64 ~x86"
72 SLOT="4"
73 IUSE="alsa debug encode ffmpeg lirc +mp3 +vorbis v4l"
74
75 DEPEND="
76 media-libs/libsndfile
77 alsa? ( media-libs/alsa-lib )
78 ffmpeg? (
79 >=media-libs/libmms-0.4
80 virtual/ffmpeg
81 )
82 lirc? ( app-misc/lirc )
83 mp3? ( media-sound/lame )
84 vorbis? (
85 media-libs/libvorbis
86 media-libs/libogg
87 )
88 "
89 RDEPEND="${DEPEND}"
90
91 S=${WORKDIR}/${MY_P}
92
93 src_prepare() {
94 local lang
95 for lang in ${KDE_LINGUAS} ; do
96 if ! use linguas_${lang} ; then
97 for dir in "${KDE_LINGUAS_DIR[@]}" ; do
98 rm ${dir}/${lang}.po
99 done
100 for plugin in "${PLUGINS[@]}" ; do
101 rm plugins/${plugin}/po/${lang}.po
102 done
103 fi
104 done
105
106 kde4-base_src_prepare
107 }
108
109 src_configure() {
110 mycmakeargs=(
111 $(cmake-utils_use_with alsa)
112 $(cmake-utils_use_with ffmpeg)
113 $(cmake-utils_use_with lirc)
114 $(cmake-utils_use_with mp3 LAME)
115 $(cmake-utils_use_with vorbis OGG_VORBIS)
116 $(cmake-utils_use_with v4l V4L2)
117 )
118
119 kde4-base_src_configure
120 }