Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/vanilla-dmz-aa-xcursors/
Date: Mon, 26 Apr 2021 20:33:49
Message-Id: 1619469215.f8b9e8df8bb664d9869a04be834e956452fe5158.conikost@gentoo
1 commit: f8b9e8df8bb664d9869a04be834e956452fe5158
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 26 20:26:25 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 26 20:33:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b9e8df
7
8 x11-themes/vanilla-dmz-aa-xcursors: bump to EAPI=7
9
10 Bug: https://bugs.gentoo.org/758236
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 x11-themes/vanilla-dmz-aa-xcursors/metadata.xml | 1 +
15 .../vanilla-dmz-aa-xcursors-0.4.5-r1.ebuild | 30 ++++++++++++++++++++++
16 2 files changed, 31 insertions(+)
17
18 diff --git a/x11-themes/vanilla-dmz-aa-xcursors/metadata.xml b/x11-themes/vanilla-dmz-aa-xcursors/metadata.xml
19 index 7a38bb90096..3c58a0219fb 100644
20 --- a/x11-themes/vanilla-dmz-aa-xcursors/metadata.xml
21 +++ b/x11-themes/vanilla-dmz-aa-xcursors/metadata.xml
22 @@ -2,4 +2,5 @@
23 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 <pkgmetadata>
25 <!-- maintainer-needed -->
26 + <stabilize-allarches/>
27 </pkgmetadata>
28
29 diff --git a/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r1.ebuild b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r1.ebuild
30 new file mode 100644
31 index 00000000000..1c19832b75a
32 --- /dev/null
33 +++ b/x11-themes/vanilla-dmz-aa-xcursors/vanilla-dmz-aa-xcursors-0.4.5-r1.ebuild
34 @@ -0,0 +1,30 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DESCRIPTION="Style neutral scalable cursor theme (black version)"
41 +HOMEPAGE="https://jimmac.eu/"
42 +SRC_URI="mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${PV}.tar.xz"
43 +S="${WORKDIR}/dmz-cursor-theme-${PV}"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
48 +
49 +DEPEND="x11-apps/xcursorgen"
50 +RDEPEND="x11-libs/libXcursor"
51 +
52 +src_compile() {
53 + pushd "${S}/DMZ-Black/pngs"
54 + ./make.sh || die
55 + popd
56 +}
57 +
58 +src_install() {
59 + insinto /usr/share/cursors/xorg-x11/DMZ-Black
60 + doins DMZ-Black/index.theme
61 +
62 + insinto /usr/share/cursors/xorg-x11/DMZ-Black/cursors
63 + doins -r DMZ-Black/xcursors/.
64 +}