From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1135438-garchives=archives.gentoo.org@lists.gentoo.org> 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 33477138334 for <garchives@archives.gentoo.org>; Wed, 1 Jan 2020 23:54:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61DBAE0BA1; Wed, 1 Jan 2020 23:54:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3F994E0BA1 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 23:54:58 +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 E268734DE3E for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 23:54:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71E3636 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Jan 2020 23:54:54 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1577922892.1ba0756b534a0187d5ea75a6f70adc932b22fff5.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/scrot/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/scrot/scrot-9999.ebuild X-VCS-Directories: media-gfx/scrot/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 1ba0756b534a0187d5ea75a6f70adc932b22fff5 X-VCS-Branch: master Date: Wed, 1 Jan 2020 23:54:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 230bd0e8-c513-47f0-bc64-5433c7f19f3b X-Archives-Hash: a8fb9e4657f7ae365ab30280ce456599 commit: 1ba0756b534a0187d5ea75a6f70adc932b22fff5 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Wed Jan 1 23:42:42 2020 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Wed Jan 1 23:54:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba0756b media-gfx/scrot: Add live ebuild Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> media-gfx/scrot/scrot-9999.ebuild | 44 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/media-gfx/scrot/scrot-9999.ebuild b/media-gfx/scrot/scrot-9999.ebuild new file mode 100644 index 00000000000..da5268bea71 --- /dev/null +++ b/media-gfx/scrot/scrot-9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools bash-completion-r1 git-r3 + +DESCRIPTION="Screen capture utility using imlib2 library" +HOMEPAGE="https://github.com/resurrecting-open-source-projects/scrot" +EGIT_REPO_URI="https://github.com/resurrecting-open-source-projects/${PN}" + +LICENSE="feh LGPL-2+" +SLOT="0" +KEYWORDS="" + +RDEPEND=" + >=media-libs/giblib-1.2.3 + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXfixes + || ( + media-libs/imlib2[gif] + media-libs/imlib2[jpeg] + media-libs/imlib2[png] + media-libs/imlib2[tiff] + ) +" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto +" +DOCS=( + AUTHORS ChangeLog CONTRIBUTING.md README TODO +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + newbashcomp "${FILESDIR}"/${PN}-1.2.bash-completion ${PN} +}