blob: ff28200c62a8377c9b35fb2db2532df0a2769bcc (
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
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/synapse/synapse-0.2.8.2.ebuild,v 1.5 2012/02/15 18:47:58 jlec Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=true
inherit gnome2 autotools-utils gnome2-utils
DESCRIPTION="A program launcher in the style of GNOME Do"
HOMEPAGE="http://launchpad.net/synapse-project/"
SRC_URI="http://launchpad.net/synapse-project/0.2/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ayatana plugins +zeitgeist"
RDEPEND="
dev-lang/vala:0.12
dev-libs/dbus-glib
dev-libs/libgee:0
dev-libs/glib:2
dev-libs/json-glib
dev-libs/libunique:1
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtkhotkey
x11-libs/gtk+:2
x11-libs/libnotify
x11-libs/pango
x11-themes/gnome-icon-theme
ayatana? ( dev-libs/libappindicator )
plugins? ( net-libs/rest )
zeitgeist? (
dev-libs/libzeitgeist
gnome-extra/zeitgeist
gnome-extra/zeitgeist-extensions[fts]
)"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-underlinking.patch
"${FILESDIR}"/${P}-zeitgeist.patch
)
pkg_preinst() {
gnome2_icon_savelist
}
src_prepare() {
sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
$(use_enable ayatana indicator yes)
$(use_enable plugins librest yes)
$(use_enable zeitgeist)
VALAC="$(type -P valac-0.12)"
)
autotools-utils_src_configure
}
pkg_preinst() {
gnome2_pkg_preinst
}
pkg_postinst() {
gnome2_pkg_postinst
}
pkg_postrm() {
gnome2_pkg_postrm
}
|