blob: fb12644088d409b3e04402384bfb77419210d25f (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
GCONF_DEBUG="no"
VALA_MIN_API_VERSION="0.14"
VALA_USE_DEPEND="vapigen"
PYTHON_COMPAT=( python{2_6,2_7} )
inherit eutils python-single-r1 vala gnome2-live
DESCRIPTION="Set of GObject and Gtk objects for connecting to Spice servers and a client GUI."
HOMEPAGE="http://spice-space.org http://gitorious.org/spice-gtk"
LICENSE="LGPL-2.1"
SLOT="0"
EGIT_REPO_URI="git://anongit.freedesktop.org/spice/${PN}"
KEYWORDS=""
IUSE="dbus doc gstreamer gtk3 +introspection policykit pulseaudio python sasl smartcard static-libs usbredir vala webdav"
REQUIRED_USE="
${PYTHON_REQUIRED_USE}
?? ( pulseaudio gstreamer )
"
# TODO:
# * check if sys-freebsd/freebsd-lib (from virtual/acl) provides acl/libacl.h
# * use external pnp.ids as soon as that means not pulling in gnome-desktop
RDEPEND="
${PYTHON_DEPS}
pulseaudio? ( media-sound/pulseaudio[glib] )
gstreamer? (
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10 )
>=x11-libs/pixman-0.17.7
>=media-libs/celt-0.5.1.1:0.5.1
media-libs/opus
dev-libs/openssl
gtk3? ( x11-libs/gtk+:3[introspection?] )
x11-libs/gtk+:2[introspection?]
>=dev-libs/glib-2.26:2
>=x11-libs/cairo-1.2
virtual/jpeg
sys-libs/zlib
dbus? ( dev-libs/dbus-glib )
introspection? ( dev-libs/gobject-introspection )
python? ( dev-python/pygtk:2 )
sasl? ( dev-libs/cyrus-sasl )
smartcard? ( app-emulation/qemu[smartcard] )
usbredir? (
sys-apps/hwids
>=sys-apps/usbredir-0.4.2
virtual/libusb:1
virtual/libgudev:=
policykit? (
sys-apps/acl
>=sys-auth/polkit-0.110-r1
!~sys-auth/polkit-0.111 )
)
webdav? ( net-libs/phodav )
"
DEPEND="${RDEPEND}
dev-lang/python
dev-python/pyparsing
dev-perl/Text-CSV
>=dev-util/intltool-0.40.0
>=sys-devel/gettext-0.17
virtual/pkgconfig
vala? ( $(vala_depend) )
"
DEPEND="${DEPEND}
$(vala_depend)
dev-lang/perl
dev-perl/Text-CSV"
GTK2_BUILDDIR="${WORKDIR}/${P}_gtk2"
GTK3_BUILDDIR="${WORKDIR}/${P}_gtk3"
src_prepare() {
./autogen.sh
use vala && vala_src_prepare
mkdir ${GTK2_BUILDDIR} ${GTK3_BUILDDIR} || die
}
src_configure() {
local myconf
local audio="no"
use gstreamer && audio="gstreamer"
use pulseaudio && audio="pulse"
if use vala ; then
# force vala regen for MinGW, etc
rm -fv gtk/controller/controller.{c,vala.stamp} gtk/controller/menu.c
fi
myconf="
$(use_enable static-libs static) \
$(use_enable introspection) \
--with-audio=${audio} \
$(use_with python) \
$(use_with sasl) \
$(use_enable smartcard) \
$(use_enable usbredir) \
$(use_with usbredir usb-ids-path /usr/share/misc/usb.ids) \
$(use_with usbredir usb-acl-helper-dir /usr/libexec) \
$(use_enable policykit polkit) \
$(use_enable vala) \
$(use_enable dbus) \
$(use_enable doc gtk-doc) \
--disable-werror \
--enable-pie"
cd ${GTK2_BUILDDIR}
echo "Running configure in ${GTK2_BUILDDIR}"
ECONF_SOURCE="${S}" econf --disable-maintainer-mode \
--with-gtk=2.0 \
${myconf}
if use gtk3; then
cd ${GTK3_BUILDDIR}
echo "Running configure in ${GTK3_BUILDDIR}"
ECONF_SOURCE="${S}" econf --disable-maintainer-mode \
--with-gtk=3.0 \
${myconf}
fi
}
src_compile() {
cd ${GTK2_BUILDDIR}
einfo "Running make in ${GTK2_BUILDDIR}"
default
if use gtk3; then
cd ${GTK3_BUILDDIR}
einfo "Running make in ${GTK3_BUILDDIR}"
default
fi
}
src_test() {
cd ${GTK2_BUILDDIR}
einfo "Running make check in ${GTK2_BUILDDIR}"
default
if use gtk3; then
cd ${GTK3_BUILDDIR}
einfo "Running make check in ${GTK3_BUILDDIR}"
default
fi
}
src_install() {
dodoc AUTHORS NEWS README TODO
cd ${GTK2_BUILDDIR}
einfo "Running make check in ${GTK2_BUILDDIR}"
default
if use gtk3; then
cd ${GTK3_BUILDDIR}
einfo "Running make install in ${GTK3_BUILDDIR}"
default
fi
# Remove .la files if they're not needed
use static-libs || prune_libtool_files
use python && rm -rf "${ED}"/usr/lib*/python*/site-packages/*.la
make_desktop_entry spicy Spicy "utilities-terminal" "Network;RemoteAccess;"
}
|