blob: 5aa274008fe4e02a7658e3c47c7aa8e30afa1a8b (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2012 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-3.4.2.ebuild,v 1.1 2012/05/19 23:58:13 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="Playlist parsing library"
HOMEPAGE="http://projects.gnome.org/totem/ http://developer.gnome.org/totem-pl-parser/stable/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~sparc ~x86 ~x86-fbsd"
IUSE="archive crypt doc +introspection +quvi"
RDEPEND=">=dev-libs/glib-2.31:2
dev-libs/gmime:2.4
>=net-libs/libsoup-gnome-2.30:2.4
archive? ( >=app-arch/libarchive-2.8.4 )
crypt? ( dev-libs/libgcrypt )
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
quvi? ( >=media-libs/libquvi-0.2.15 )"
DEPEND="${RDEPEND}
!<media-video/totem-2.21
>=dev-util/intltool-0.35
>=sys-devel/gettext-0.17
virtual/pkgconfig
doc? ( >=dev-util/gtk-doc-1.14 )
test? (
gnome-base/gvfs[http]
sys-apps/dbus )"
# eautoreconf needs:
# >=dev-util/gtk-doc-am-1.14
pkg_setup() {
G2CONF="${G2CONF}
--disable-static
--disable-maintainer-mode
$(use_enable archive libarchive)
$(use_enable crypt libgcrypt)
$(use_enable quvi)
$(use_enable introspection)"
DOCS="AUTHORS ChangeLog NEWS"
}
# eautoreconf needs:
#src_unpack() {
# # If gobject-introspection is installed, we don't need the extra .m4
# if has_version "dev-libs/gobject-introspection"; then
# unpack ${P}.tar.bz2
# else
# unpack ${A}
# fi
#}
src_prepare() {
gnome2_src_prepare
# Disable tests requiring network access, bug #346127
sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \
-e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \
-i plparse/tests/parser.c || die "sed failed"
}
src_test() {
# This is required as told by upstream in bgo#629542
GVFS_DISABLE_FUSE=1 dbus-launch emake check || die "emake check failed"
}
|