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 017D2138350 for ; Thu, 23 Jan 2020 19:18:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27FF2E0AB9; Thu, 23 Jan 2020 19:18:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 085F9E0AB9 for ; Thu, 23 Jan 2020 19:18:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D22F034E3F4 for ; Thu, 23 Jan 2020 19:18:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F632A3 for ; Thu, 23 Jan 2020 19:18:29 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1579807079.331912dd636e581fac58e99bdfdcee1620fedabf.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/peek/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/peek/peek-1.4.0-r1.ebuild X-VCS-Directories: media-video/peek/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 331912dd636e581fac58e99bdfdcee1620fedabf X-VCS-Branch: master Date: Thu, 23 Jan 2020 19:18:29 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 10e57449-2345-481d-88a2-1789d36a521b X-Archives-Hash: 0838fa07704d2d756d54ccc1a1b459b9 commit: 331912dd636e581fac58e99bdfdcee1620fedabf Author: Matt Turner gentoo org> AuthorDate: Thu Jan 23 18:54:30 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Jan 23 19:17:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331912dd media-video/peek: Update media-video/ffmpeg dependency Signed-off-by: Matt Turner gentoo.org> media-video/peek/peek-1.4.0-r1.ebuild | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/media-video/peek/peek-1.4.0-r1.ebuild b/media-video/peek/peek-1.4.0-r1.ebuild new file mode 100644 index 00000000000..df8ee3d18b5 --- /dev/null +++ b/media-video/peek/peek-1.4.0-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +VALA_MIN_API_VERSION="0.22" + +inherit gnome2 meson vala + +DESCRIPTION="Simple animated Gif screen recorder" +HOMEPAGE="https://github.com/phw/peek" +SRC_URI="https://github.com/phw/peek/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="keybinder test" +RESTRICT="!test? ( test )" + +RDEPEND=">=dev-libs/glib-2.38:2 + media-video/ffmpeg[X,encode,vpx,xcb(+)] + virtual/imagemagick-tools + >=x11-libs/gtk+-3.20:3 + keybinder? ( dev-libs/keybinder:3 )" +DEPEND="${RDEPEND} + $(vala_depend) + app-text/txt2man + >=sys-devel/gettext-0.19 + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-meson.patch ) + +src_prepare() { + vala_src_prepare + gnome2_src_prepare +} + +src_configure() { + local emesonargs=( + $(meson_feature keybinder enable-keybinder) + $(meson_use test build-tests) + ) + + meson_src_configure +}