blob: a8ac3a8b3bb693bde4c2628c1872da0e3809fe71 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit autotools bash-completion-r1 gnome2-live
DESCRIPTION="Clipboard management system"
HOMEPAGE="http://github.com/Keruspe/GPaste"
EGIT_REPO_URI="git://github.com/Keruspe/GPaste.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="applet bash-completion +gnome-shell +vala zsh-completion"
DEPEND=">=dev-libs/glib-2.28:2
>=sys-devel/gettext-0.17
>=dev-util/intltool-0.40
>=x11-libs/gtk+-3.0.0:3
dev-libs/libxml2
x11-base/xorg-server
>=dev-libs/gobject-introspection-1.31.0
>=dev-lang/vala-0.14.0:0.14
vala? ( >=dev-lang/vala-0.14.0:0.14[vapigen] )"
RDEPEND="${DEPEND}
bash-completion? ( app-shells/bash )
sys-apps/dbus
gnome-shell? ( >=gnome-base/gnome-shell-3.1.90 )
zsh-completion? ( app-shells/zsh app-shells/zsh-completion )"
WANT_AUTOMAKE="1.11"
G2CONF="
VALAC=$(type -p valac-0.14)
VAPIGEN=$(type -p vapigen-0.14)
--disable-schemas-compile
$(use_enable applet)
$(use_enable gnome-shell gnome-shell-extension)
$(use_enable vala)"
DOCS="AUTHORS NEWS ChangeLog ChangeLog.pre2.0 TODO FIXME README"
REQUIRED_USE="|| ( gnome-shell applet )"
src_install() {
use bash-completion && dobashcomp data/completions/gpaste
if use zsh-completion ; then
insinto /usr/share/zsh/site-functions
doins data/completions/_gpaste
fi
gnome2_src_install
find ${D} -name '*.la' -exec rm -f {} +
}
|