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 4E7EA13835A for ; Sun, 13 Jun 2021 08:49:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53810E0A01; Sun, 13 Jun 2021 08:49:12 +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 3384CE0A01 for ; Sun, 13 Jun 2021 08:49:12 +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 3A406340DCD for ; Sun, 13 Jun 2021 08:49:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3F1B7B2 for ; Sun, 13 Jun 2021 08:49:07 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1623424991.ccde6e304101ceb0084f644eb21b1cb34ec86f99.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/bonzomatic/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/bonzomatic/bonzomatic-9999.ebuild X-VCS-Directories: media-gfx/bonzomatic/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: ccde6e304101ceb0084f644eb21b1cb34ec86f99 X-VCS-Branch: master Date: Sun, 13 Jun 2021 08:49:07 +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: e132d01f-661f-4756-b6c0-4f2144ee5286 X-Archives-Hash: 3afdfef24435c8f92fe1b06a34f079cb commit: ccde6e304101ceb0084f644eb21b1cb34ec86f99 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Jun 6 02:38:22 2021 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Jun 11 15:23:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ccde6e30 media-gfx/bonzomatic: drop unmaintained live Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> media-gfx/bonzomatic/bonzomatic-9999.ebuild | 72 ----------------------------- 1 file changed, 72 deletions(-) diff --git a/media-gfx/bonzomatic/bonzomatic-9999.ebuild b/media-gfx/bonzomatic/bonzomatic-9999.ebuild deleted file mode 100644 index ee701bf37..000000000 --- a/media-gfx/bonzomatic/bonzomatic-9999.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Live shader coding tool and Shader Showdown workhorse" -HOMEPAGE="https://github.com/Gargaj/Bonzomatic" -if [[ "${PV}" == "9999" ]] -then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Gargaj/Bonzomatic" -else - MY_PV="$(ver_rs 1- -)" - SRC_URI="https://github.com/Gargaj/Bonzomatic/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/Bonzomatic-${MY_PV}" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="Unlicense" -SLOT="0" -IUSE="system-glfw system-glew system-stb system-kissfft wayland" - -# TODO: system-miniaudio, system-jsonxx/json++, system-scintilla -# !system-glfw copied from media-libs/glfw-3.3.3::gentoo -# !system-glew copied from media-libs/glew-2.2.0::gentoo -DEPEND=" - system-glfw? ( media-libs/glfw ) - !system-glfw? ( - wayland? ( - dev-libs/wayland - media-libs/mesa[egl,wayland] - dev-libs/wayland-protocols - ) - !wayland? ( - x11-libs/libX11 - x11-libs/libXcursor - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXxf86vm - x11-libs/libXi - ) - ) - system-glew? ( media-libs/glew:= ) - !system-glew? ( - >=x11-libs/libX11-1.6.2 - >=x11-libs/libXext-1.3.2 - >=x11-libs/libXi-1.7.2 - >=x11-libs/libXmu-1.1.1-r1 - ) - system-stb? ( dev-libs/stb ) - system-kissfft? ( sci-libs/kissfft ) - virtual/opengl - virtual/glu - media-libs/alsa-lib - media-libs/fontconfig -" -RDEPEND="${DEPEND}" -BDEPEND="!system-glfw? ( wayland? ( dev-libs/wayland-protocols ) )" - -src_configure() { - local mycmakeargs=( - -DBONZOMATIC_USE_SYSTEM_GLFW=$(usex system-glfw) - -DGLFW_USE_WAYLAND="$(usex wayland)" - -DBONZOMATIC_USE_SYSTEM_GLEW=$(usex system-glew) - -DBONZOMATIC_USE_SYSTEM_STB=$(usex system-stb) - -DBONZOMATIC_USE_SYSTEM_KISSFFT=$(usex system-kissfft) - ) - - cmake_src_configure -}