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/libkate: ChangeLog libkate-0.2.1.ebuild libkate-0.2.0.ebuild
Date: Mon, 29 Sep 2008 18:25:24
Message-Id: E1KkNQv-0002IO-CX@stork.gentoo.org
1 aballier 08/09/29 18:25:21
2
3 Modified: ChangeLog
4 Added: libkate-0.2.1.ebuild
5 Removed: libkate-0.2.0.ebuild
6 Log:
7 version bump and fix build without doxygen, bug #238858
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
9
10 Revision Changes Path
11 1.9 media-libs/libkate/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 27 Sep 2008 12:49:32 -0000 1.8
24 +++ ChangeLog 29 Sep 2008 18:25:20 -0000 1.9
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/libkate
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v 1.8 2008/09/27 12:49:32 fmccor Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v 1.9 2008/09/29 18:25:20 aballier Exp $
30 +
31 +*libkate-0.2.1 (29 Sep 2008)
32 +
33 + 29 Sep 2008; Alexis Ballier <aballier@g.o>
34 + +files/libkate-0.2.1-doc.patch, -libkate-0.2.0.ebuild,
35 + +libkate-0.2.1.ebuild:
36 + version bump and fix build without doxygen, bug #238858
37
38 27 Sep 2008; Ferris McCormick <fmccor@g.o> libkate-0.2.0.ebuild:
39 Add ~sparc for testing. Part of Bug #237813 and now needed for vlc.
40
41
42
43 1.1 media-libs/libkate/libkate-0.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/libkate-0.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/libkate-0.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libkate-0.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/libkate-0.2.1.ebuild,v 1.1 2008/09/29 18:25:20 aballier Exp $
53
54 inherit eutils autotools
55
56 DESCRIPTION="Codec for karaoke and text encapsulation for Ogg"
57 HOMEPAGE="http://code.google.com/p/libkate/"
58 SRC_URI="http://libkate.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="doc"
64
65 RDEPEND="media-libs/libogg
66 media-libs/libpng"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig
69 sys-devel/flex
70 sys-devel/bison
71 doc? ( app-doc/doxygen )"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}/${P}-doc.patch"
77 eautoreconf
78 }
79
80 src_compile() {
81 econf $(use_enable doc)
82 emake || die "emake failed"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "make install failed"
87 dodoc AUTHORS ChangeLog README
88 # Remove useless doc
89 rm -rf "${D}/usr/share/doc/${PN}"
90 use doc && dohtml -r doc/html/*
91 }