commit:     8292cfd3fd12eac8eee9df72a0464f7eb4a30bc7
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 02:22:59 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 06:36:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8292cfd3

app-emulation/spice: version bump 0.13.2

1) add gstreamer support, possible using mjpeg, vp8, x264 video encodec
   upstream support both gstreamer version 1.0 & 0.10, but for now we only
   choose 1.0
2) notify user to install extra gstreamer plugins via readme.gentoo
3) bump EAPI=6

Package-Manager: portage-2.3.0

 app-emulation/spice/Manifest            |  1 +
 app-emulation/spice/files/README.gentoo |  7 +++
 app-emulation/spice/metadata.xml        |  3 ++
 app-emulation/spice/spice-0.13.2.ebuild | 77 +++++++++++++++++++++++++++++++++
 4 files changed, 88 insertions(+)

diff --git a/app-emulation/spice/Manifest b/app-emulation/spice/Manifest
index 45c923c..b1bc248 100644
--- a/app-emulation/spice/Manifest
+++ b/app-emulation/spice/Manifest
@@ -1,2 +1,3 @@
 DIST spice-0.12.7.tar.bz2 1220405 SHA256 
1c8e96cb9e833e23372e2f461508135903b697fd8c6daff565e9e87f6d2f6aba SHA512 
a740d500d0ccad3edd1f2f71e51c5a120d6ae98e44125f33870c12f5d1eeb30b809e588d05b2d0cadb4216e889b38e57d2278916817538311b875ff22e3b31ae
 WHIRLPOOL 
61ffa3e280a346a2667ddd38dcfd63ffa6c1e6efd0f05da4fad43b00ca5e1a1587411a907b929b75e4d1e72ebcef29621ccdd76dfb313e8f3a5513a5a367132b
 DIST spice-0.13.1.tar.bz2 1245323 SHA256 
9ecb130424da02e90c235c1294f6e759d7c676c5e710587a5c98a1f20f991da2 SHA512 
a8e65cc02c802686f2e0c21615401e13b337e050c40938bebefa684abc1ce0e2d478136d0fec481a8ee30ed98f2e2fb909dfbf6cd65e9dfd7093d59f825b95d5
 WHIRLPOOL 
068d7d26f18435995546d84b0d8d81ced4973773303463e597cf05e1c5accd9ac8554f22032eb55827bebbe6c0fc14915455da24c58fc70b135d955fe3442db7
+DIST spice-0.13.2.tar.bz2 1284734 SHA256 
045a1f145d8207ecf33105c8a8917252c1201c45791fdc544733465a37974954 SHA512 
7220c6550446a8077522442bd518cff68439bb0b00ee199920b32a97c3655ccad75a0cdfc822a99be678e6098ad33698b26340caddae0400403490a89137d367
 WHIRLPOOL 
f2bd409e87203c2bbe481e6b6ba9ae3c6cfee0e67b0dd5073c97e9ff14d9c02a7cec0606700717ce9c25e478a38eefc925f9c797697981528f357464f388b65d

diff --git a/app-emulation/spice/files/README.gentoo 
b/app-emulation/spice/files/README.gentoo
new file mode 100644
index 0000000..1920ea6
--- /dev/null
+++ b/app-emulation/spice/files/README.gentoo
@@ -0,0 +1,7 @@
+
+If you choose to enable the video streaming support of gstreamer,
+please try to install addtional gst-plugins which matching the video codecs
+
+       mjpeg           media-plugins/gst-plugins-libav:1.0
+       vpx             media-plugins/gst-plugins-vpx:1.0
+       x264            media-plugins/gst-plugins-x264:1.0

diff --git a/app-emulation/spice/metadata.xml b/app-emulation/spice/metadata.xml
index 0f32fa2..81ba74a 100644
--- a/app-emulation/spice/metadata.xml
+++ b/app-emulation/spice/metadata.xml
@@ -8,5 +8,8 @@
        <use>
                <flag name="lz4">Enable support for LZ4 compression using 
<pkg>app-arch/lz4</pkg></flag>
                <flag name="smartcard">Enable smartcard remoting using 
<pkg>app-emulation/libcacard</pkg></flag>
+               <flag name="mjpeg">Enables mjpeg encodec support using 
<pkg>media-plugins/gst-plugins-libav</pkg></flag>
+               <flag name="vpx">Enables vp8 encodec support using 
<pkg>media-plugins/gst-plugins-vpx</pkg></flag>
+               <flag name="x264">Enables x264 encodec support using 
<pkg>media-plugins/gst-plugins-x264</pkg></flag>
        </use>
 </pkgmetadata>

diff --git a/app-emulation/spice/spice-0.13.2.ebuild 
b/app-emulation/spice/spice-0.13.2.ebuild
new file mode 100644
index 0000000..0b41187
--- /dev/null
+++ b/app-emulation/spice/spice-0.13.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4} )
+
+inherit eutils python-any-r1 readme.gentoo-r1
+
+DESCRIPTION="SPICE server"
+HOMEPAGE="http://spice-space.org/";
+SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl lz4 sasl smartcard static-libs gstreamer"
+
+# the libspice-server only uses the headers of libcacard
+RDEPEND="
+       >=dev-libs/glib-2.22:2[static-libs(+)?]
+       >=media-libs/celt-0.5.1.1:0.5.1[static-libs(+)?]
+       media-libs/opus[static-libs(+)?]
+       sys-libs/zlib[static-libs(+)?]
+       virtual/jpeg:0=[static-libs(+)?]
+       >=x11-libs/pixman-0.17.7[static-libs(+)?]
+       !libressl? ( dev-libs/openssl:0[static-libs(+)?] )
+       libressl? ( dev-libs/libressl[static-libs(+)?] )
+       lz4? ( app-arch/lz4 )
+       smartcard? ( >=app-emulation/libcacard-0.1.2 )
+       sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] )
+       gstreamer? ( media-libs/gstreamer:1.0 )"
+
+DEPEND="
+       ~app-emulation/spice-protocol-0.12.12
+       virtual/pkgconfig
+       $(python_gen_any_dep '
+               >=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}]
+               dev-python/six[${PYTHON_USEDEP}]
+       ')
+       smartcard? ( app-emulation/qemu[smartcard] )
+       ${RDEPEND}"
+
+# Prevent sandbox violations, bug #586560
+# https://bugzilla.gnome.org/show_bug.cgi?id=581836
+addpredict /dev
+
+python_check_deps() {
+       has_version ">=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}]"
+       has_version "dev-python/six[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+       [[ ${MERGE_TYPE} != binary ]] && python-any-r1_pkg_setup
+}
+
+# maintainer notes:
+# * opengl support is currently broken
+src_configure() {
+       local myconf="
+               $(use_enable static-libs static)
+               $(use_enable lz4)
+               $(use_with sasl)
+               $(use_enable smartcard)
+               $(usex gstreamer "1.0" "no")
+               --enable-celt051
+               --disable-gui
+               "
+       econf ${myconf}
+}
+
+src_install() {
+       default
+       use static-libs || prune_libtool_files
+       readme.gentoo_create_doc
+}

Reply via email to