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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08AC3158170 for ; Fri, 19 Jul 2024 18:05:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4B19E2AF2; Fri, 19 Jul 2024 18:05:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91CDAE2AF2 for ; Fri, 19 Jul 2024 18:05:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62AB733C4EE for ; Fri, 19 Jul 2024 18:05:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DE721E4D for ; Fri, 19 Jul 2024 18:05:04 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1721412281.c733f83b3e36a571202f3ff3021cd67e9120e1c6.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/vanilla-dmz-aa-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild X-VCS-Directories: x11-themes/vanilla-dmz-aa-xcursors/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c733f83b3e36a571202f3ff3021cd67e9120e1c6 X-VCS-Branch: master Date: Fri, 19 Jul 2024 18:05:04 +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: 5395e9fe-6484-4e8d-9dc7-1f94cc5eb934 X-Archives-Hash: ce1b7fbf0bc6b9cb526118886d0e6802 commit: c733f83b3e36a571202f3ff3021cd67e9120e1c6 Author: Pacho Ramos gentoo org> AuthorDate: Fri Jul 19 18:01:39 2024 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Jul 19 18:04:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c733f83b x11-themes/vanilla-dmz-aa-xcursors: Use updated location for cursor themes Closes: https://bugs.gentoo.org/934171 Signed-off-by: Pacho Ramos gentoo.org> .../vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild new file mode 100644 index 000000000000..d5ca58285808 --- /dev/null +++ b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Style neutral scalable cursor theme (black version)" +HOMEPAGE="https://jimmac.eu/" +SRC_URI="mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${PV}.tar.xz" +S="${WORKDIR}/dmz-cursor-theme-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +DEPEND="x11-apps/xcursorgen" +RDEPEND="x11-libs/libXcursor" + +src_compile() { + pushd "${S}/DMZ-Black/pngs" + ./make.sh || die + popd +} + +src_install() { + insinto /usr/share/icons/DMZ-Black + doins DMZ-Black/index.theme + + insinto /usr/share/icons/DMZ-Black/cursors + doins -r DMZ-Black/xcursors/. +}