From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5018013832E for ; Wed, 17 Aug 2016 06:37:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C74321C102; Wed, 17 Aug 2016 06:37:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A8E521C0FE for ; Wed, 17 Aug 2016 06:37:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4202340B10 for ; Wed, 17 Aug 2016 06:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6784A2460 for ; Wed, 17 Aug 2016 06:37:48 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1471415785.e2af4e0d2702e14a8f76ba65525ff36b10a2b535.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/spice/spice-9999.ebuild X-VCS-Directories: app-emulation/spice/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: e2af4e0d2702e14a8f76ba65525ff36b10a2b535 X-VCS-Branch: master Date: Wed, 17 Aug 2016 06:37:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9f2675d0-8710-4ca7-a394-88191d3dcb1f X-Archives-Hash: 4c41c64a0dabfbbbd4b20096c9b0db3d commit: e2af4e0d2702e14a8f76ba65525ff36b10a2b535 Author: Yixun Lan gentoo org> AuthorDate: Wed Aug 17 02:24:09 2016 +0000 Commit: Yixun Lan gentoo org> CommitDate: Wed Aug 17 06:36:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2af4e0d app-emulation/spice: live ebuilds updated Package-Manager: portage-2.3.0 app-emulation/spice/spice-9999.ebuild | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/app-emulation/spice/spice-9999.ebuild b/app-emulation/spice/spice-9999.ebuild index 03693f6..a5f3f7f 100644 --- a/app-emulation/spice/spice-9999.ebuild +++ b/app-emulation/spice/spice-9999.ebuild @@ -2,11 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python{2_7,3_4} ) -inherit eutils git-r3 python-any-r1 autotools +inherit eutils git-r3 python-any-r1 autotools readme.gentoo-r1 DESCRIPTION="SPICE server" HOMEPAGE="http://spice-space.org/" @@ -16,7 +16,7 @@ EGIT_REPO_URI="git://git.freedesktop.org/git/spice/spice" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="" -IUSE="libressl lz4 sasl smartcard static-libs" +IUSE="libressl lz4 sasl smartcard static-libs gstreamer" RDEPEND=" >=dev-libs/glib-2.22:2[static-libs(+)?] @@ -29,7 +29,8 @@ RDEPEND=" libressl? ( dev-libs/libressl[static-libs(+)?] ) lz4? ( app-arch/lz4 ) smartcard? ( >=app-emulation/libcacard-0.1.2 ) - sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] )" + sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] ) + gstreamer? ( media-libs/gstreamer:1.0 )" DEPEND=" =app-emulation/spice-protocol-9999 @@ -55,22 +56,25 @@ pkg_setup() { } src_prepare() { - epatch_user - - eautoreconf default + eautoreconf } src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable lz4) \ - $(use_with sasl) \ - $(use_enable smartcard) \ + 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 }