blob: 28943d7a11c62e4a34eb57bd405fd0a321fefd08 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils mono versionator
DIR_PV=$(get_version_component_range 1-2)
DIR_PV2=$(get_version_component_range 1-3)
DESCRIPTION="Mono DBus API wrapper for Zeitgeist"
HOMEPAGE="https://launchpad.net/zeitgeist-sharp/"
SRC_URI="
http://launchpad.net/zeitgeist-sharp/${DIR_PV}/${DIR_PV2}/+download/${P}.tar.gz
doc? ( http://launchpad.net/zeitgeist-sharp/${DIR_PV}/${DIR_PV2}/+download/${PN}-docs-${DIR_PV2}.tar.gz )"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-3"
IUSE="doc"
RDEPEND="
dev-dotnet/dbus-sharp
dev-dotnet/dbus-sharp-glib
dev-dotnet/glib-sharp
dev-lang/mono
gnome-extra/zeitgeist"
DEPEND="${RDEPEND}
virtual/pkgconfig"
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/${P}-zg-0.9.patch
"${FILESDIR}"/${P}-automake-1.12.patch )
src_prepare() {
sed \
-e "s:@expanded_libdir@:@libdir@:" \
-i Zeitgeist/zeitgeist-sharp.pc.in || die
autotools-utils_src_prepare
}
src_install() {
autotools-utils_src_install
use doc && dohtml -r "${WORKDIR}"/${PN}-docs/*
}
|