blob: 18578cf9583dae184c17433bf46e6b7a1bfed94b (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzeitgeist/libzeitgeist-0.3.14.ebuild,v 1.1 2012/02/15 10:59:21 jlec Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils eutils versionator
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="Client library to interact with zeitgeist"
HOMEPAGE="http://launchpad.net/libzeitgeist/"
SRC_URI="http://launchpad.net/libzeitgeist/${MY_PV}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
CDEPEND="dev-libs/glib:2"
RDEPEND="${CDEPEND}
gnome-extra/zeitgeist"
DEPEND="${CDEPEND}
dev-util/gtk-doc
dev-util/pkgconfig"
src_prepare() {
sed \
-e "s:doc/libzeitgeist:doc/${PF}:" \
-i Makefile.am || die
# FIXME: This is the unique test failing
sed \
-e '/TEST_PROGS += test-log/d' \
-i tests/Makefile.am || die
autotools-utils_src_prepare
}
|