Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kdemultimedia-kioslaves: ChangeLog kdemultimedia-kioslaves-4.1.4.ebuild
Date: Tue, 13 Jan 2009 21:43:38
Message-Id: E1LMr2r-0003YX-HS@stork.gentoo.org
1 alexxy 09/01/13 21:43:33
2
3 Modified: ChangeLog
4 Added: kdemultimedia-kioslaves-4.1.4.ebuild
5 Log:
6 Bump kde to 4.1.4
7 (Portage version: 2.2_rc21/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.107 kde-base/kdemultimedia-kioslaves/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog?rev=1.107&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog?rev=1.107&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog?r1=1.106&r2=1.107
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog,v
19 retrieving revision 1.106
20 retrieving revision 1.107
21 diff -u -r1.106 -r1.107
22 --- ChangeLog 16 Nov 2008 05:06:16 -0000 1.106
23 +++ ChangeLog 13 Jan 2009 21:43:33 -0000 1.107
24 @@ -1,6 +1,12 @@
25 # ChangeLog for kde-base/kdemultimedia-kioslaves
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog,v 1.106 2008/11/16 05:06:16 vapier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-kioslaves/ChangeLog,v 1.107 2009/01/13 21:43:33 alexxy Exp $
30 +
31 +*kdemultimedia-kioslaves-4.1.4 (13 Jan 2009)
32 +
33 + 13 Jan 2009; Alexey Shvetsov <alexxy@g.o>
34 + +kdemultimedia-kioslaves-4.1.4.ebuild:
35 + Bump to 4.1.4
36
37 15 Nov 2008; Mike Frysinger <vapier@g.o>
38 kdemultimedia-kioslaves-4.1.3.ebuild:
39
40
41
42 1.1 kde-base/kdemultimedia-kioslaves/kdemultimedia-kioslaves-4.1.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia-kioslaves/kdemultimedia-kioslaves-4.1.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdemultimedia-kioslaves/kdemultimedia-kioslaves-4.1.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kdemultimedia-kioslaves-4.1.4.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia-kioslaves/kdemultimedia-kioslaves-4.1.4.ebuild,v 1.1 2009/01/13 21:43:33 alexxy Exp $
52
53 EAPI="2"
54
55 KMMODULE=kioslave
56 KMNAME=kdemultimedia
57 inherit kde4-meta
58
59 DESCRIPTION="KDE kioslaves from the kdemultimedia package"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE="debug encode flac vorbis"
62
63 # Tests are broken. Last checked on 4.0.3.
64 #RESTRICT="test"
65
66 DEPEND="${DEPEND}
67 >=kde-base/libkcddb-${PV}:${SLOT}
68 >=kde-base/libkcompactdisc-${PV}:${SLOT}
69 media-sound/cdparanoia
70 encode? ( flac? ( >=media-libs/flac-1.1.2 )
71 vorbis? ( media-libs/libvorbis ) )"
72 RDEPEND="${DEPEND}"
73
74 KMEXTRACTONLY="libkcddb/
75 libkcompactdisc/"
76 #KMCOMPILEONLY="libkcddb/"
77 KMLOADLIBS="libkcddb"
78
79 src_configure() {
80 ln -s "${PREFIX}"/include/libkcddb/configbase.h \
81 "${WORKDIR}"/${P}/kioslave/audiocd/ \
82 || die "linking generated header into sources failed"
83
84 if use encode; then
85 mycmakeargs="${mycmakeargs}
86 $(cmake-utils_use_with flac Flac)
87 $(cmake-utils_use_with vorbis OggVorbis)"
88 else
89 mycmakeargs="${mycmakeargs}
90 -DWITH_OggVorbis=OFF -DWITH_Flac=OFF"
91 fi
92
93 kde4-meta_src_configure
94 }
95
96 pkg_postinst() {
97 if use encode; then
98 echo
99 elog "In order to use the lame plugin to encode mp3 files you will need to"
100 elog "install media-sound/lame"
101 echo
102 fi
103 }