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 2740B13835C for ; Mon, 26 Apr 2021 19:20:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C962E08F0; Mon, 26 Apr 2021 19:20:57 +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 4EE6FE08F0 for ; Mon, 26 Apr 2021 19:20:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 18849341064 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 575FE73A 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: <1619464818.8c3f56242d3bce341e1e6ee8e93e27ebc1de83da.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/haematite-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/haematite-xcursors/haematite-xcursors-1.0-r1.ebuild X-VCS-Directories: x11-themes/haematite-xcursors/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 8c3f56242d3bce341e1e6ee8e93e27ebc1de83da 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: cac7466b-dd94-4383-a042-a928cabf850d X-Archives-Hash: c05d0a4cc76a58aca5d442a05afa99e3 commit: 8c3f56242d3bce341e1e6ee8e93e27ebc1de83da Author: Conrad Kostecki gentoo org> AuthorDate: Mon Apr 26 18:53:56 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Apr 26 19:20:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3f5624 x11-themes/haematite-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> .../haematite-xcursors-1.0-r1.ebuild | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/x11-themes/haematite-xcursors/haematite-xcursors-1.0-r1.ebuild b/x11-themes/haematite-xcursors/haematite-xcursors-1.0-r1.ebuild new file mode 100644 index 00000000000..7ea78546a44 --- /dev/null +++ b/x11-themes/haematite-xcursors/haematite-xcursors-1.0-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="${PN/-xcursors/}" + +DESCRIPTION="A simple crispy dark-grey xcursor theme" +HOMEPAGE="https://store.kde.org/p/999432/" +SRC_URI="mirror://gentoo/19594-${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" + +RDEPEND="x11-libs/libXcursor" + +src_install() { + insinto /usr/share/cursors/xorg-x11/haematite + doins -r haematite/cursors +} + +pkg_postinst() { + elog "To use this set of cursors, edit or create the file ~/.Xdefaults" + elog "and add the following line:" + elog "Xcursor.theme: ${MY_PN}" + elog + elog "You can change the size by adding a line like:" + elog "Xcursor.size: 48" + elog + elog "Also, to globally use this set of mouse cursors edit the file:" + elog " ${EROOT}/usr/share/cursors/xorg-x11/default/index.theme" + elog "and change the line:" + elog " Inherits=[current setting]" + elog "to" + elog " Inherits=${MY_PN}" + elog + elog "Note this will be overruled by a user's ~/.Xdefaults file." + elog + + ewarn "If you experience flickering, try setting the following line in" + ewarn "the Device section of your xorg.conf file:" + ewarn " Option \"HWCursor\" \"false\"" +}