From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A9177138CEF for ; Wed, 12 Feb 2014 19:07:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B9F0E0B03; Wed, 12 Feb 2014 19:07:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAD00E0B03 for ; Wed, 12 Feb 2014 19:07:13 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEF0033FA13 for ; Wed, 12 Feb 2014 19:07:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id D6F4618873 for ; Wed, 12 Feb 2014 19:07:10 +0000 (UTC) From: "David Heidelberger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Heidelberger" Message-ID: <1392232008.ee91aeb9accb15a3abc659c0e11d99983f050230.okias@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-libs/qt-gstreamer/ X-VCS-Repository: proj/kde X-VCS-Files: media-libs/qt-gstreamer/qt-gstreamer-1.0_pre20140212.ebuild X-VCS-Directories: media-libs/qt-gstreamer/ X-VCS-Committer: okias X-VCS-Committer-Name: David Heidelberger X-VCS-Revision: ee91aeb9accb15a3abc659c0e11d99983f050230 X-VCS-Branch: master Date: Wed, 12 Feb 2014 19:07:10 +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: ccca496d-123a-4ff1-84cf-f3e4b4ece1a1 X-Archives-Hash: 6e8c4c6dd92dfe56450589704dfb9460 commit: ee91aeb9accb15a3abc659c0e11d99983f050230 Author: David Heidelberger ixit cz> AuthorDate: Wed Feb 12 19:06:48 2014 +0000 Commit: David Heidelberger gmail com> CommitDate: Wed Feb 12 19:06:48 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=ee91aeb9 [media-libs/qt-gstreamer] bump and mask 1.0_pre20140212 Package-Manager: portage-2.2.8-r1 --- .../qt-gstreamer-1.0_pre20140212.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/media-libs/qt-gstreamer/qt-gstreamer-1.0_pre20140212.ebuild b/media-libs/qt-gstreamer/qt-gstreamer-1.0_pre20140212.ebuild new file mode 100644 index 0000000..cf7c488 --- /dev/null +++ b/media-libs/qt-gstreamer/qt-gstreamer-1.0_pre20140212.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +QT_MINIMAL="4.8.0" + +REV="ce12a27736cb2cc23424800ac2baea254a067803" +SRC_URI="http://github.com/detrout/${PN}/archive/${REV}.zip -> ${P}.zip" +KEYWORDS="~amd64 ~x86" + +inherit cmake-utils + +DESCRIPTION="QtGStreamer provides C++ bindings for GStreamer with a Qt-style API." +HOMEPAGE="http://gstreamer.freedesktop.org/wiki/QtGStreamer" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="test" + +S="${WORKDIR}/${PN}-${REV}" + +RDEPEND=" + dev-libs/glib:2 + >=dev-libs/boost-1.40:= + >=dev-util/boost-build-1.40 + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + >=dev-qt/qtcore-${QT_MINIMAL}:4 + >=dev-qt/qtdeclarative-${QT_MINIMAL}:4 + >=dev-qt/qtgui-${QT_MINIMAL}:4 + >=dev-qt/qtopengl-${QT_MINIMAL}:4 +" +DEPEND=" + ${RDEPEND} + test? ( >=dev-qt/qttest-${QT_MINIMAL}:4 ) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use test QTGSTREAMER_TESTS) + ) + + cmake-utils_src_configure +}