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/libmatroska: ChangeLog libmatroska-1.2.0.ebuild
Date: Wed, 29 Jun 2011 14:26:58
Message-Id: 20110629142647.2762120054@flycatcher.gentoo.org
1 aballier 11/06/29 14:26:47
2
3 Modified: ChangeLog
4 Added: libmatroska-1.2.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.92 media-libs/libmatroska/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmatroska/ChangeLog?rev=1.92&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmatroska/ChangeLog?rev=1.92&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmatroska/ChangeLog?r1=1.91&r2=1.92
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libmatroska/ChangeLog,v
20 retrieving revision 1.91
21 retrieving revision 1.92
22 diff -u -r1.91 -r1.92
23 --- ChangeLog 28 May 2011 11:48:07 -0000 1.91
24 +++ ChangeLog 29 Jun 2011 14:26:47 -0000 1.92
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libmatroska
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/ChangeLog,v 1.91 2011/05/28 11:48:07 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/ChangeLog,v 1.92 2011/06/29 14:26:47 aballier Exp $
30 +
31 +*libmatroska-1.2.0 (29 Jun 2011)
32 +
33 + 29 Jun 2011; Alexis Ballier <aballier@g.o> +libmatroska-1.2.0.ebuild:
34 + version bump
35
36 28 May 2011; Brent Baude <ranger@g.o> libmatroska-1.0.0.ebuild:
37 Marking libmatroska-1.0.0 ppc for bug 329633
38
39
40
41 1.1 media-libs/libmatroska/libmatroska-1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmatroska/libmatroska-1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libmatroska/libmatroska-1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libmatroska-1.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/libmatroska-1.2.0.ebuild,v 1.1 2011/06/29 14:26:47 aballier Exp $
51
52 EAPI="2"
53
54 inherit flag-o-matic eutils toolchain-funcs
55
56 DESCRIPTION="Extensible multimedia container format based on EBML"
57 HOMEPAGE="http://www.matroska.org/"
58 SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE=""
64 RESTRICT="test"
65
66 DEPEND=">=dev-libs/libebml-1.2.0"
67 RDEPEND="${DEPEND}"
68
69 S="${WORKDIR}/${P}/make/linux"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${PN}-1.0.0-respectflags.patch"
73 }
74
75 src_compile() {
76 #fixes locale for gcc3.4.0 to close bug 52385
77 append-flags $(test-flags -finput-charset=ISO8859-15)
78
79 emake PREFIX=/usr \
80 LIBEBML_INCLUDE_DIR=/usr/include/ebml \
81 LIBEBML_LIB_DIR=/usr/$(get_libdir) \
82 CXX="$(tc-getCXX)" || die "make failed"
83 }
84
85 src_install() {
86 emake prefix="${D}/usr" libdir="${D}/usr/$(get_libdir)" install || die "make install failed"
87 dodoc "${WORKDIR}/${P}/ChangeLog"
88 }