blob: 4916165ada375a32263ccff22d891ab63815c069 (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit vala
DESCRIPTION="A program launcher in the style of GNOME Do"
HOMEPAGE="https://launchpad.net/synapse-project/"
SRC_URI="https://launchpad.net/synapse-project/0.3/${PV}/+download/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="indicator nls plugins"
RDEPEND="
>=dev-libs/glib-2.28.0:2
>=x11-libs/gtk+-3.0.0:3
dev-libs/json-glib
dev-libs/keybinder:3
dev-libs/libgee:0.8
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/libnotify
x11-libs/pango
x11-themes/adwaita-icon-theme
indicator? ( dev-libs/libappindicator:3 )
nls? ( virtual/libintl )
plugins? ( >=net-libs/rest-0.7 )
"
DEPEND="
$(vala_depend)
${RDEPEND}
nls? ( sys-devel/gettext )
virtual/pkgconfig
"
src_prepare() {
default
sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in || die
vala_src_prepare
}
src_configure() {
econf \
$(use_enable indicator) \
$(use_enable nls) \
$(use_enable plugins librest yes) \
--disable-zeitgeist
}
|