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 2DE4613835D for ; Mon, 26 Apr 2021 19:20:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24FFBE08F6; Mon, 26 Apr 2021 19:20:58 +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 0B589E08F6 for ; Mon, 26 Apr 2021 19:20:58 +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 485EC341430 for ; Mon, 26 Apr 2021 19:20:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32339736 for ; Mon, 26 Apr 2021 19:20:51 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1619464817.12231ca57ada88fa29f6af837c11c5f3c0d7a3eb.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/blueglass-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/blueglass-xcursors/blueglass-xcursors-0.4-r1.ebuild X-VCS-Directories: x11-themes/blueglass-xcursors/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 12231ca57ada88fa29f6af837c11c5f3c0d7a3eb X-VCS-Branch: master Date: Mon, 26 Apr 2021 19:20:51 +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: e56dd9ef-0d98-42c9-8b93-729e7986fe4e X-Archives-Hash: f5bca4cc140019fc77b91938b09d89da commit: 12231ca57ada88fa29f6af837c11c5f3c0d7a3eb Author: Conrad Kostecki gentoo org> AuthorDate: Mon Apr 26 18:38:15 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Apr 26 19:20:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12231ca5 x11-themes/blueglass-xcursors: add missing dep Bug: https://bugs.gentoo.org/758236 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> .../blueglass-xcursors-0.4-r1.ebuild | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/x11-themes/blueglass-xcursors/blueglass-xcursors-0.4-r1.ebuild b/x11-themes/blueglass-xcursors/blueglass-xcursors-0.4-r1.ebuild new file mode 100644 index 00000000000..dfe195a4954 --- /dev/null +++ b/x11-themes/blueglass-xcursors/blueglass-xcursors-0.4-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="5532-BlueGlass-XCursors-3D-${PV}" + +DESCRIPTION="A high quality set of Xfree 4.3.0 animated mouse cursors" +HOMEPAGE="https://store.kde.org/p/999915/" +SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P:5}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86" + +RDEPEND="x11-libs/libXcursor" + +# Note: although the package name is BlueGlass, the tarball & authors directions +# use the directory 'Blue'. +src_install() { + insinto /usr/share/cursors/xorg-x11/Blue + doins -r Blue/cursors + + einstalldocs +} + +pkg_postinst() { + einfo "To use this set of cursors, edit or create the file ~/.Xdefaults" + einfo "and add the following line:" + einfo "Xcursor.theme: Blue" + einfo "" + einfo "You can change the size by adding a line like:" + einfo "Xcursor.size: 48" + einfo "" + einfo "To globally use this set of mouse cursors edit the file:" + einfo " ${EROOT}/usr/share/cursors/xorg-x11/default/index.theme" + einfo "and change the line:" + einfo " Inherits=[current setting]" + einfo "to" + einfo " Inherits=Blue" + einfo "" + einfo "Note this will be overruled by a user's ~/.Xdefaults file." + einfo + + ewarn "If you experience flickering, try setting the following line in" + ewarn "the Device section of your XF86Config:" + ewarn "Option \"HWCursor\" \"false\"" +}