Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/slop/
Date: Tue, 24 Apr 2018 09:22:01
Message-Id: 1524561667.7f3a7dcf03ffa9693cddae427b495712afb72c47.soap@gentoo
1 commit: 7f3a7dcf03ffa9693cddae427b495712afb72c47
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 23 08:03:13 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 24 09:21:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3a7dcf
7
8 x11-misc/slop: Version bump to 7.4
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 x11-misc/slop/Manifest | 1 +
13 x11-misc/slop/slop-7.4.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/x11-misc/slop/Manifest b/x11-misc/slop/Manifest
17 index eae40123c51..2ed1af945a0 100644
18 --- a/x11-misc/slop/Manifest
19 +++ b/x11-misc/slop/Manifest
20 @@ -1 +1,2 @@
21 DIST slop-6.3.46.tar.gz 89391 BLAKE2B 0150ca63e4a598e892abd5505e867f01204f29796dc378a7f3d0c041c1a27f000e98962c41cbf8109573575b37449c1869f29f988c5d2046b504382b2a56779d SHA512 9f44bbb8e14e71a17858711d8da902cb9cf5dc65ed47284be15122f2d1793544deab7f0700517bd07e44613662bfbc7f0991f3d36dcf74af6f90de5fbbd79558
22 +DIST slop-7.4.tar.gz 50079 BLAKE2B 20815270bf1bffe0ef26630fd31d0d4cc7261633cef389e64c232a89033b6e8b5e1651fb5c882e2870808107734c4c088123b85675fa2aae932570d770344dc8 SHA512 13d09c2c9f05760ee0a273edb6d40da8a87989d3f071a8c868a0c7e535ba89b9eb934c79d56212cd689687f86e3683cef1b749ef7b37be3805ea8eb05c796e58
23
24 diff --git a/x11-misc/slop/slop-7.4.ebuild b/x11-misc/slop/slop-7.4.ebuild
25 new file mode 100644
26 index 00000000000..a61629c541d
27 --- /dev/null
28 +++ b/x11-misc/slop/slop-7.4.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
36 +inherit cmake-utils
37 +
38 +DESCRIPTION="An application that queries the user for a selection for printing"
39 +HOMEPAGE="https://github.com/naelstrof/slop"
40 +
41 +if [[ ${PV} == *9999 ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://github.com/naelstrof/slop.git"
44 +else
45 + SRC_URI="https://github.com/naelstrof/slop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 + KEYWORDS="~amd64 ~x86"
47 +fi
48 +
49 +LICENSE="GPL-3"
50 +SLOT="0/${PV}"
51 +IUSE="opengl"
52 +
53 +RDEPEND="
54 + dev-libs/icu:=
55 + x11-libs/libX11
56 + x11-libs/libXext
57 + opengl? (
58 + media-libs/glew:0=
59 + virtual/opengl
60 + x11-libs/libXrender:=
61 + )"
62 +DEPEND="
63 + ${RDEPEND}
64 + media-libs/glm"
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + -DSLOP_OPENGL=$(usex opengl)
69 + )
70 + cmake-utils_src_configure
71 +}