mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
30 lines
715 B
Bash
30 lines
715 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Style neutral scalable cursor theme (black 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 ~mips ppc ppc64 ~s390 sparc x86"
|
|
|
|
DEPEND="x11-apps/xcursorgen"
|
|
RDEPEND="x11-libs/libXcursor"
|
|
|
|
src_compile() {
|
|
pushd "${S}/DMZ-Black/pngs"
|
|
./make.sh || die
|
|
popd
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/icons/DMZ-Black
|
|
doins DMZ-Black/index.theme
|
|
|
|
insinto /usr/share/icons/DMZ-Black/cursors
|
|
doins -r DMZ-Black/xcursors/.
|
|
}
|