Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/kdenlive: ChangeLog kdenlive-0.5.ebuild
Date: Mon, 31 Mar 2008 21:11:50
Message-Id: E1JgRIB-00024L-Ba@stork.gentoo.org
1 rbu 08/03/31 21:11:47
2
3 Modified: ChangeLog
4 Added: kdenlive-0.5.ebuild
5 Log:
6 Non-maintainer-bump (bug #188626), a lot of fixes and new features,
7 including HD support. Thanks to Toffanin, Patrick Huber and Roberto
8 Castagnola for contributions.
9 (Portage version: 2.1.4.4)
10
11 Revision Changes Path
12 1.20 media-video/kdenlive/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/kdenlive/ChangeLog?rev=1.20&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/kdenlive/ChangeLog?rev=1.20&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/kdenlive/ChangeLog?r1=1.19&r2=1.20
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v
21 retrieving revision 1.19
22 retrieving revision 1.20
23 diff -u -r1.19 -r1.20
24 --- ChangeLog 25 Dec 2007 17:24:20 -0000 1.19
25 +++ ChangeLog 31 Mar 2008 21:11:46 -0000 1.20
26 @@ -1,6 +1,15 @@
27 # ChangeLog for media-video/kdenlive
28 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v 1.19 2007/12/25 17:24:20 phreak Exp $
30 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/ChangeLog,v 1.20 2008/03/31 21:11:46 rbu Exp $
32 +
33 +*kdenlive-0.5 (31 Mar 2008)
34 +
35 + 31 Mar 2008; Robert Buchholz <rbu@g.o> +kdenlive-0.5.ebuild:
36 + Non-maintainer-bump (bug #188626), a lot of fixes and new features,
37 + including HD support. Thanks to Toffanin, Patrick Huber and Roberto
38 + Castagnola for contributions.
39 +
40 + This should also fix bug #193641.
41
42 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
43 Removing zypher from metadata.xml as per #26909. Assigning to
44
45
46
47 1.1 media-video/kdenlive/kdenlive-0.5.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/kdenlive/kdenlive-0.5.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/kdenlive/kdenlive-0.5.ebuild?rev=1.1&content-type=text/plain
51
52 Index: kdenlive-0.5.ebuild
53 ===================================================================
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.5.ebuild,v 1.1 2008/03/31 21:11:46 rbu Exp $
57
58 inherit eutils kde
59
60 DESCRIPTION="Kdenlive! (pronounced Kay-den-live) is a Non Linear Video Editing Suite for KDE."
61 HOMEPAGE="http://kdenlive.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/kdenlive/${P}-1.tar.gz"
63
64 SLOT="0"
65 LICENSE="GPL-2"
66 KEYWORDS="~x86 ~ppc ~amd64"
67 IUSE=""
68
69 RDEPEND="media-video/ffmpeg
70 >=media-libs/mlt-0.2.4-r1
71 >=media-libs/mlt++-20060601"
72
73 DEPEND="${RDEPEND}
74 x11-base/xorg-server
75 x11-proto/xextproto"
76
77 need-kde 3
78
79 pkg_setup() {
80 if ! built_with_use media-libs/mlt sdl || \
81 ! built_with_use media-video/ffmpeg sdl ; then
82 eerror "You need to build both media-libs/mlt with USE='sdl'"
83 die "media-libs/mlt or media-video/ffmpeg without sdl detected"
84 fi
85
86 if ! built_with_use media-video/ffmpeg X ; then
87 eerror "You need to build media-video/ffmpeg with USE='X'"
88 die "media-video/ffmpeg without X detected"
89 fi
90 }
91
92 src_compile() {
93 rm configure
94 myconf="--enable-pch"
95
96 kde_src_compile
97 }
98
99 src_install() {
100 kde_src_install
101
102 # docbook is not generated, does not build properly
103 # and is installed to the wrong location
104 rm -r "${D}"/usr/share/doc/HTML
105 }
106
107
108
109 --
110 gentoo-commits@l.g.o mailing list