From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1654551-garchives=archives.gentoo.org@lists.gentoo.org> 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 6125C158170 for <garchives@archives.gentoo.org>; Fri, 19 Jul 2024 18:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBCECE2A80; Fri, 19 Jul 2024 18:05:06 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88D77E29FD for <gentoo-commits@lists.gentoo.org>; Fri, 19 Jul 2024 18:05:06 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7671A33C4EE for <gentoo-commits@lists.gentoo.org>; Fri, 19 Jul 2024 18:05:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8D5F1E0C for <gentoo-commits@lists.gentoo.org>; Fri, 19 Jul 2024 18:05:03 +0000 (UTC) From: "Pacho Ramos" <pacho@gentoo.org> 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" <pacho@gentoo.org> Message-ID: <1721412279.68d31957b51275801bb838434e462f078ec96e32.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/golden-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/golden-xcursors/golden-xcursors-0.8-r3.ebuild X-VCS-Directories: x11-themes/golden-xcursors/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 68d31957b51275801bb838434e462f078ec96e32 X-VCS-Branch: master Date: Fri, 19 Jul 2024 18:05:03 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 856cf2d4-87d4-4c24-8bda-bb42ef60cd76 X-Archives-Hash: 39588766f8610865f2457ffba997da13 commit: 68d31957b51275801bb838434e462f078ec96e32 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Fri Jul 19 17:34:38 2024 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Fri Jul 19 18:04:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68d31957 x11-themes/golden-xcursors: Use updated location for cursor themes Closes: https://bugs.gentoo.org/934164 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> .../golden-xcursors/golden-xcursors-0.8-r3.ebuild | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/x11-themes/golden-xcursors/golden-xcursors-0.8-r3.ebuild b/x11-themes/golden-xcursors/golden-xcursors-0.8-r3.ebuild new file mode 100644 index 000000000000..83446618491c --- /dev/null +++ b/x11-themes/golden-xcursors/golden-xcursors-0.8-r3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="5507-Golden-XCursors-3D-${PV}" + +DESCRIPTION="A high quality set of animated mouse cursors" +HOMEPAGE="https://store.kde.org/p/999860/" +SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P:5}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +RDEPEND="x11-libs/libXcursor" + +src_install() { + insinto /usr/share/icons + doins -r Gold/ + dodoc README +}