Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libebml: libebml-1.2.1.ebuild ChangeLog
Date: Wed, 29 Jun 2011 14:22:35
Message-Id: 20110629142225.E3FBD20054@flycatcher.gentoo.org
1 aballier 11/06/29 14:22:25
2
3 Modified: ChangeLog
4 Added: libebml-1.2.1.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.105 dev-libs/libebml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libebml/ChangeLog?rev=1.105&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libebml/ChangeLog?rev=1.105&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libebml/ChangeLog?r1=1.104&r2=1.105
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libebml/ChangeLog,v
20 retrieving revision 1.104
21 retrieving revision 1.105
22 diff -u -r1.104 -r1.105
23 --- ChangeLog 28 May 2011 11:46:47 -0000 1.104
24 +++ ChangeLog 29 Jun 2011 14:22:25 -0000 1.105
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libebml
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/ChangeLog,v 1.104 2011/05/28 11:46:47 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/ChangeLog,v 1.105 2011/06/29 14:22:25 aballier Exp $
30 +
31 +*libebml-1.2.1 (29 Jun 2011)
32 +
33 + 29 Jun 2011; Alexis Ballier <aballier@g.o> +libebml-1.2.1.ebuild:
34 + version bump
35
36 28 May 2011; Brent Baude <ranger@g.o> libebml-1.0.0.ebuild:
37 Marking libebml-1.0.0 ppc for bug 329633
38
39
40
41 1.1 dev-libs/libebml/libebml-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libebml/libebml-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libebml/libebml-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libebml-1.2.1.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/dev-libs/libebml/libebml-1.2.1.ebuild,v 1.1 2011/06/29 14:22:25 aballier Exp $
51
52 EAPI=2
53
54 inherit eutils multilib toolchain-funcs
55
56 DESCRIPTION="Extensible binary format library (kinda like XML)"
57 HOMEPAGE="http://www.matroska.org/"
58 SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND=""
67
68 S="${WORKDIR}/${P}/make/linux"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-1.2.0-makefile-fixup.patch
72 }
73
74 src_compile() {
75 # keep the prefix in here to make sure the binary is built with a correct
76 # install_name on Darwin
77 emake \
78 prefix="${EPREFIX}/usr" \
79 CC="$(tc-getCC)" \
80 CXX="$(tc-getCXX)" \
81 || die "emake failed"
82 }
83
84 src_install() {
85 emake \
86 DESTDIR="${D}" \
87 prefix="${EPREFIX}/usr" \
88 libdir="${EPREFIX}/usr/$(get_libdir)" \
89 install || die "emake install failed"
90
91 dodoc "${WORKDIR}/${P}/ChangeLog"
92 }