blob: 6251010789dcdccd624aea7c56e947fa926bd758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Style neutral scalable cursor theme (white 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-White/pngs"
./make.sh || die
popd
}
src_install() {
insinto /usr/share/icons/DMZ-White
doins DMZ-White/index.theme
insinto /usr/share/icons/DMZ-White/cursors
doins -r DMZ-White/xcursors/.
}
|