blob: 16a1f440b8a96eeb3520bcfc7f5e7ea56ac2d84c (
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
|
# 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.6.ebuild,v 1.4 2012/01/29 16:06:46 jlec Exp $
EAPI=4
inherit 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=""
RDEPEND="dev-lang/vala:0.12
x11-libs/gtkhotkey
dev-libs/libgee:0
>=dev-libs/json-glib-0.10.0
>=x11-libs/gtk+-2.20.0:2
>=dev-libs/glib-2.20.0:2
x11-libs/libnotify
dev-libs/libunique:1
gnome-extra/zeitgeist[fts]
dev-libs/libzeitgeist
dev-libs/dbus-glib
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/pango
x11-themes/gnome-icon-theme"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool"
pkg_preinst() {
gnome2_icon_savelist
}
src_prepare() {
sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in
}
src_configure() {
econf VALAC="$(type -P valac-0.12)"
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|