blob: 73d081398874f493d216f8083fbde2605a1c6bf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libkate/libkate-0.3.8.ebuild,v 1.1 2010/08/11 08:02:58 aballier Exp $
DESCRIPTION="Codec for karaoke and text encapsulation for Ogg"
HOMEPAGE="http://code.google.com/p/libkate/"
SRC_URI="http://libkate.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug doc wxwidgets"
COMMON_DEPEND="media-libs/libogg
media-libs/libpng"
DEPEND="${COMMON_DEPEND}
wxwidgets? ( dev-lang/python )
dev-util/pkgconfig
sys-devel/flex
sys-devel/bison
doc? ( app-doc/doxygen )"
RDEPEND="${COMMON_DEPEND}
wxwidgets? ( =dev-python/wxpython-2.8* media-libs/liboggz )"
src_compile() {
use wxwidgets || sed -i -e "s/HAVE_PYTHON=yes/HAVE_PYTHON=no/" configure
econf $(use_enable debug) $(use_enable doc) --docdir=/usr/share/doc/${PF}
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README
}
|