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: libkate-0.3.2.ebuild ChangeLog
Date: Sun, 03 May 2009 20:24:21
Message-Id: E1M0iBv-0007Ph-Un@stork.gentoo.org
1 aballier 09/05/03 20:21:39
2
3 Modified: ChangeLog
4 Added: libkate-0.3.2.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc32/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 media-libs/libkate/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 15 Mar 2009 14:12:51 -0000 1.28
23 +++ ChangeLog 3 May 2009 20:21:39 -0000 1.29
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libkate
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v 1.28 2009/03/15 14:12:51 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/ChangeLog,v 1.29 2009/05/03 20:21:39 aballier Exp $
29 +
30 +*libkate-0.3.2 (03 May 2009)
31 +
32 + 03 May 2009; Alexis Ballier <aballier@g.o> +libkate-0.3.2.ebuild:
33 + version bump
34
35 15 Mar 2009; Brent Baude <ranger@g.o> libkate-0.3.0.ebuild:
36 Marking libkate-0.3.0 ~ppc64 for bug 254306
37
38
39
40 1.1 media-libs/libkate/libkate-0.3.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/libkate-0.3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libkate/libkate-0.3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libkate-0.3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/libkate-0.3.2.ebuild,v 1.1 2009/05/03 20:21:39 aballier Exp $
50
51 DESCRIPTION="Codec for karaoke and text encapsulation for Ogg"
52 HOMEPAGE="http://code.google.com/p/libkate/"
53 SRC_URI="http://libkate.googlecode.com/files/${P}.tar.gz"
54
55 LICENSE="BSD"
56 SLOT="0"
57 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
58 IUSE="doc wxwindows"
59
60 COMMON_DEPEND="media-libs/libogg
61 media-libs/libpng"
62 DEPEND="${COMMON_DEPEND}
63 wxwindows? ( dev-lang/python )
64 dev-util/pkgconfig
65 sys-devel/flex
66 sys-devel/bison
67 doc? ( app-doc/doxygen )"
68 RDEPEND="${COMMON_DEPEND}
69 wxwindows? ( =dev-python/wxpython-2.8* media-libs/liboggz )"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 sed -i -e "s/oggz-merge/oggzmerge/g" -e "s/oggz-rip/oggzrip/g" tools/KateDJ/kdj/tools.py || die "failed to rename oggz tools"
75 }
76
77 src_compile() {
78 use wxwindows || sed -i -e "s/HAVE_PYTHON=yes/HAVE_PYTHON=no/" configure
79 econf $(use_enable doc) --docdir=/usr/share/doc/${PF}
80 emake || die "emake failed"
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "make install failed"
85 dodoc AUTHORS ChangeLog README
86 }