blob: 22593fe7718031697b0405fe9f146fc8c287292b (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-2.30.1.ebuild,v 1.2 2010/07/20 01:51:50 jer Exp $
EAPI="2"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Playlist parsing library"
HOMEPAGE="http://www.gnome.org/projects/totem/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
# TODO: Re-generate doc ?
# TODO: Introspection
IUSE="doc test"
RDEPEND=">=dev-libs/glib-2.21.6
>=dev-libs/gmime-2.4"
DEPEND="${RDEPEND}
!<media-video/totem-2.21
>=dev-util/intltool-0.35
dev-util/gtk-doc-am
doc? ( >=dev-util/gtk-doc-1.11 )"
DOCS="AUTHORS ChangeLog NEWS"
pkg_setup() {
G2CONF="${G2CONF} --disable-static $(use_enable introspection)"
}
src_prepare() {
gnome2_src_prepare
# FIXME: disable some broken tests, report upstream
sed -e 's,^\(.*/parser/resolution.*\)$,/*\1*/,' \
-e 's,^\(.*/parser/parsability.*\)$,/*\1*/,' \
-e 's,^\(.*/parser/parsing/hadess.*\)$,/*\1*/,' \
-i plparse/tests/parser.c || die
# FIXME: tarball generated with broken gtk-doc, revisit me.
if use doc; then
sed "/^TARGET_DIR/i \GTKDOC_REBASE=/usr/bin/gtkdoc-rebase" \
-i gtk-doc.make || die "sed 1 failed"
else
sed "/^TARGET_DIR/i \GTKDOC_REBASE=$(type -P true)" \
-i gtk-doc.make || die "sed 2 failed"
fi
}
|