Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/scrot/
Date: Wed, 01 Jan 2020 23:54:59
Message-Id: 1577922892.1ba0756b534a0187d5ea75a6f70adc932b22fff5.jer@gentoo
1 commit: 1ba0756b534a0187d5ea75a6f70adc932b22fff5
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 23:42:42 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 23:54:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba0756b
7
8 media-gfx/scrot: Add live ebuild
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 media-gfx/scrot/scrot-9999.ebuild | 44 +++++++++++++++++++++++++++++++++++++++
14 1 file changed, 44 insertions(+)
15
16 diff --git a/media-gfx/scrot/scrot-9999.ebuild b/media-gfx/scrot/scrot-9999.ebuild
17 new file mode 100644
18 index 00000000000..da5268bea71
19 --- /dev/null
20 +++ b/media-gfx/scrot/scrot-9999.ebuild
21 @@ -0,0 +1,44 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools bash-completion-r1 git-r3
27 +
28 +DESCRIPTION="Screen capture utility using imlib2 library"
29 +HOMEPAGE="https://github.com/resurrecting-open-source-projects/scrot"
30 +EGIT_REPO_URI="https://github.com/resurrecting-open-source-projects/${PN}"
31 +
32 +LICENSE="feh LGPL-2+"
33 +SLOT="0"
34 +KEYWORDS=""
35 +
36 +RDEPEND="
37 + >=media-libs/giblib-1.2.3
38 + x11-libs/libX11
39 + x11-libs/libXcursor
40 + x11-libs/libXfixes
41 + || (
42 + media-libs/imlib2[gif]
43 + media-libs/imlib2[jpeg]
44 + media-libs/imlib2[png]
45 + media-libs/imlib2[tiff]
46 + )
47 +"
48 +DEPEND="
49 + ${RDEPEND}
50 + x11-base/xorg-proto
51 +"
52 +DOCS=(
53 + AUTHORS ChangeLog CONTRIBUTING.md README TODO
54 +)
55 +
56 +src_prepare() {
57 + default
58 + eautoreconf
59 +}
60 +
61 +src_install() {
62 + default
63 +
64 + newbashcomp "${FILESDIR}"/${PN}-1.2.bash-completion ${PN}
65 +}