blob: 8791b0ec8a196114944d183c95864477b7eb89ce (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Style neutral scalable cursor theme (black version)"
HOMEPAGE="http://jimmac.musichall.cz/"
SRC_URI="mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${PV}.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86"
IUSE=""
DEPEND="x11-apps/xcursorgen"
S="${WORKDIR}/dmz-cursor-theme-${PV}"
src_compile() {
cd "${S}/DMZ-Black/pngs" || die
./make.sh || die
}
src_install() {
insinto /usr/share/icons/Vanilla-DMZ-AA/cursors
doins -r DMZ-Black/xcursors/.
insinto /usr/share/icons/Vanilla-DMZ-AA
doins DMZ-Black/index.theme
}
|