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 E820B138331 for ; Tue, 24 Apr 2018 09:22:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30B8AE0921; Tue, 24 Apr 2018 09:22:01 +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 0C777E0921 for ; Tue, 24 Apr 2018 09:22:01 +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 15DDC335C7B for ; Tue, 24 Apr 2018 09:22:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BC8E27C for ; Tue, 24 Apr 2018 09:21:58 +0000 (UTC) From: "David Seifert" 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 Seifert" Message-ID: <1524561667.7f3a7dcf03ffa9693cddae427b495712afb72c47.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/slop/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/slop/Manifest x11-misc/slop/slop-7.4.ebuild X-VCS-Directories: x11-misc/slop/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7f3a7dcf03ffa9693cddae427b495712afb72c47 X-VCS-Branch: master Date: Tue, 24 Apr 2018 09:21:58 +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: 68e65007-85e4-427d-bbfd-202aa27b6a94 X-Archives-Hash: 7dcd1c558da34780a8870e1a5f24ada4 commit: 7f3a7dcf03ffa9693cddae427b495712afb72c47 Author: David Seifert gentoo org> AuthorDate: Mon Apr 23 08:03:13 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Apr 24 09:21:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3a7dcf x11-misc/slop: Version bump to 7.4 Package-Manager: Portage-2.3.31, Repoman-2.3.9 x11-misc/slop/Manifest | 1 + x11-misc/slop/slop-7.4.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/x11-misc/slop/Manifest b/x11-misc/slop/Manifest index eae40123c51..2ed1af945a0 100644 --- a/x11-misc/slop/Manifest +++ b/x11-misc/slop/Manifest @@ -1 +1,2 @@ DIST slop-6.3.46.tar.gz 89391 BLAKE2B 0150ca63e4a598e892abd5505e867f01204f29796dc378a7f3d0c041c1a27f000e98962c41cbf8109573575b37449c1869f29f988c5d2046b504382b2a56779d SHA512 9f44bbb8e14e71a17858711d8da902cb9cf5dc65ed47284be15122f2d1793544deab7f0700517bd07e44613662bfbc7f0991f3d36dcf74af6f90de5fbbd79558 +DIST slop-7.4.tar.gz 50079 BLAKE2B 20815270bf1bffe0ef26630fd31d0d4cc7261633cef389e64c232a89033b6e8b5e1651fb5c882e2870808107734c4c088123b85675fa2aae932570d770344dc8 SHA512 13d09c2c9f05760ee0a273edb6d40da8a87989d3f071a8c868a0c7e535ba89b9eb934c79d56212cd689687f86e3683cef1b749ef7b37be3805ea8eb05c796e58 diff --git a/x11-misc/slop/slop-7.4.ebuild b/x11-misc/slop/slop-7.4.ebuild new file mode 100644 index 00000000000..a61629c541d --- /dev/null +++ b/x11-misc/slop/slop-7.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +: ${CMAKE_MAKEFILE_GENERATOR:=ninja} +inherit cmake-utils + +DESCRIPTION="An application that queries the user for a selection for printing" +HOMEPAGE="https://github.com/naelstrof/slop" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/naelstrof/slop.git" +else + SRC_URI="https://github.com/naelstrof/slop/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0/${PV}" +IUSE="opengl" + +RDEPEND=" + dev-libs/icu:= + x11-libs/libX11 + x11-libs/libXext + opengl? ( + media-libs/glew:0= + virtual/opengl + x11-libs/libXrender:= + )" +DEPEND=" + ${RDEPEND} + media-libs/glm" + +src_configure() { + local mycmakeargs=( + -DSLOP_OPENGL=$(usex opengl) + ) + cmake-utils_src_configure +}