Gentoo Archives: gentoo-commits

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