Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/spice: ChangeLog spice-0.8.1.ebuild
Date: Wed, 27 Apr 2011 08:09:47
Message-Id: 20110427080937.0AE9E20054@flycatcher.gentoo.org
1 dev-zero 11/04/27 08:09:37
2
3 Modified: ChangeLog
4 Added: spice-0.8.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 app-emulation/spice/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/spice/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 18 Apr 2011 08:01:29 -0000 1.10
24 +++ ChangeLog 27 Apr 2011 08:09:36 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/spice
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice/ChangeLog,v 1.10 2011/04/18 08:01:29 dev-zero Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice/ChangeLog,v 1.11 2011/04/27 08:09:36 dev-zero Exp $
30 +
31 +*spice-0.8.1 (27 Apr 2011)
32 +
33 + 27 Apr 2011; Tiziano Müller <dev-zero@g.o> +spice-0.8.1.ebuild:
34 + Version bump.
35
36 18 Apr 2011; Tiziano Müller <dev-zero@g.o> metadata.xml:
37 Removed old USE flag descriptions.
38
39
40
41 1.1 app-emulation/spice/spice-0.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice/spice-0.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/spice/spice-0.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: spice-0.8.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/spice/spice-0.8.1.ebuild,v 1.1 2011/04/27 08:09:36 dev-zero Exp $
51
52 EAPI=4
53
54 DESCRIPTION="SPICE server and client."
55 HOMEPAGE="http://spice-space.org/"
56 SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~amd64"
61 IUSE="+gui static-libs"
62
63 RDEPEND=">=app-emulation/spice-protocol-0.8
64 >=x11-libs/pixman-0.17.7
65 media-libs/alsa-lib
66 media-libs/celt:0.5.1
67 dev-libs/openssl
68 >=x11-libs/libXrandr-1.2
69 x11-libs/libX11
70 x11-libs/libXext
71 x11-libs/libXrender
72 x11-libs/libXfixes
73 virtual/jpeg
74 sys-libs/zlib
75 gui? ( =dev-games/cegui-0.6* )"
76 DEPEND="dev-util/pkgconfig
77 ${RDEPEND}"
78
79 # maintainer notes:
80 # * opengl support is currently broken
81 # * add slirp for tunnel-support
82 # * add libcacard for smartcard support
83
84 src_configure() {
85 local myconf=""
86 use gui && myconf+="--enable-gui "
87 econf ${myconf} \
88 $(use_enable static-libs static)
89 }
90
91 src_install() {
92 default
93 use static-libs || rm "${D}"/usr/lib*/*.la
94 }