Gentoo Archives: gentoo-commits

From: "Patrick Kursawe (phosphan)" <phosphan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/kradio: ChangeLog kradio-20061112-r1.ebuild
Date: Wed, 30 Apr 2008 13:01:35
Message-Id: E1JrBwC-0001nK-VN@stork.gentoo.org
1 phosphan 08/04/30 13:01:32
2
3 Modified: ChangeLog
4 Added: kradio-20061112-r1.ebuild
5 Log:
6 Fixes according to bug #218527
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.17 media-sound/kradio/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/kradio/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/kradio/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/kradio/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 30 Apr 2008 07:37:24 -0000 1.16
23 +++ ChangeLog 30 Apr 2008 13:01:32 -0000 1.17
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/kradio
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.16 2008/04/30 07:37:24 phosphan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/ChangeLog,v 1.17 2008/04/30 13:01:32 phosphan Exp $
29 +
30 +*kradio-20061112-r1 (30 Apr 2008)
31 +
32 + 30 Apr 2008; Patrick Kursawe <phosphan@g.o>
33 + +kradio-20061112-r1.ebuild:
34 + Fixes according to bug #218527
35
36 30 Apr 2008; Patrick Kursawe <phosphan@g.o>
37 -files/1.0b_beta3-includehints.patch, -kradio-1.0b_beta3.ebuild:
38
39
40
41 1.1 media-sound/kradio/kradio-20061112-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/kradio/kradio-20061112-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/kradio/kradio-20061112-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kradio-20061112-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-20061112-r1.ebuild,v 1.1 2008/04/30 13:01:32 phosphan Exp $
51
52 inherit eutils kde
53
54 MY_PV="snapshot-2006-11-12-r497"
55 S="${WORKDIR}/${PN}-${MY_PV}"
56
57 DESCRIPTION="kradio is a radio tuner application for KDE"
58 HOMEPAGE="http://kradio.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
60
61 SLOT="0"
62 LICENSE="GPL-2"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="alsa lirc encode vorbis v4l2 oss"
65
66 DEPEND="lirc? ( app-misc/lirc )
67 media-libs/libsndfile
68 encode? ( media-sound/lame )
69 vorbis? ( media-libs/libvorbis )"
70
71 need-kde 3.5
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 sed -i kradio3/src/kradio.desktop -e 's:kradio\.png:kradio:'
77 rm configure
78 }
79
80 src_compile() {
81 if ! use vorbis; then
82 myconf="${myconf} --enable-ogg=no"
83 fi
84 if ! use encode; then
85 myconf="${myconf} --enable-lame=no"
86 fi
87 if ! use lirc; then
88 myconf="${myconf} --enable-lirc=no"
89 fi
90 if ! use alsa; then
91 myconf="${myconf} --enable-alsa=no"
92 fi
93 if ! use v4l2; then
94 myconf="${myconf} --enable-v4l2=no"
95 fi
96 if ! use oss; then
97 myconf="${myconf} --enable-oss=no"
98 fi
99 kde_src_compile || die "make failed"
100 }
101
102
103
104 --
105 gentoo-commits@l.g.o mailing list