Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/mlt++: ChangeLog mlt++-0.3.4.ebuild
Date: Mon, 12 Jan 2009 22:09:15
Message-Id: E1LMUy8-0006fF-PU@stork.gentoo.org
1 aballier 09/01/12 22:09:12
2
3 Modified: ChangeLog
4 Added: mlt++-0.3.4.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
8
9 Revision Changes Path
10 1.15 media-libs/mlt++/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/mlt++/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/mlt++/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/mlt++/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/mlt++/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 13 Nov 2008 10:08:18 -0000 1.14
23 +++ ChangeLog 12 Jan 2009 22:09:12 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/mlt++
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt++/ChangeLog,v 1.14 2008/11/13 10:08:18 aballier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt++/ChangeLog,v 1.15 2009/01/12 22:09:12 aballier Exp $
30 +
31 +*mlt++-0.3.4 (12 Jan 2009)
32 +
33 + 12 Jan 2009; Alexis Ballier <aballier@g.o>
34 + +files/mlt++-0.3.4-asneeded.patch, +mlt++-0.3.4.ebuild:
35 + version bump
36
37 *mlt++-0.3.2 (13 Nov 2008)
38
39
40
41
42 1.1 media-libs/mlt++/mlt++-0.3.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/mlt++/mlt++-0.3.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/mlt++/mlt++-0.3.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mlt++-0.3.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/media-libs/mlt++/mlt++-0.3.4.ebuild,v 1.1 2009/01/12 22:09:12 aballier Exp $
52
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="Various bindings for mlt"
56 HOMEPAGE="http://mlt.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/mlt/${P}.tar.gz"
58
59 LICENSE="LGPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
62 IUSE=""
63
64 DEPEND=">=media-libs/mlt-0.3.4"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69
70 epatch "${FILESDIR}/${PN}-0.3.4-asneeded.patch"
71 }
72
73 src_compile() {
74 tc-export CXX
75 econf
76 emake CC="$(tc-getCXX)" || die "emake failed"
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "make install failed"
81
82 dodoc README CUSTOMISING HOWTO
83 }