diff options
Diffstat (limited to 'x11-themes/neutral-xcursors/neutral-xcursors-1.20.ebuild')
-rw-r--r-- | x11-themes/neutral-xcursors/neutral-xcursors-1.20.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-themes/neutral-xcursors/neutral-xcursors-1.20.ebuild b/x11-themes/neutral-xcursors/neutral-xcursors-1.20.ebuild new file mode 100644 index 000000000000..dcf360c469e0 --- /dev/null +++ b/x11-themes/neutral-xcursors/neutral-xcursors-1.20.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +MY_P="48837-Neutral_Plus_1.2.tar.bz2" +MY_PN="Neutral_Plus" + +DESCRIPTION="\"Neutral_Plus\", the standard X.Org mouse cursor with shadows and animations" +HOMEPAGE="http://kde-look.org/content/show.php/show.php?content=48837" +SRC_URI="http://kde-look.org/CONTENT/content-files/${MY_P}" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 sparc x86 ~x86-fbsd" +IUSE="examples" +RDEPEND="x11-libs/libX11 + x11-libs/libXcursor + >=media-libs/libpng-1.2" +DEPEND="${RDEPEND} + x11-apps/xcursorgen" +S="${WORKDIR}/Neutral_Plus" + +src_install(){ + insinto /usr/share/cursors/xorg-x11/${MY_PN}/ + + doins -r "${S}"/cursors/ + doins "${S}"/index.theme + + ## install additional cursor source files? + if use examples; then + doins -r "${S}"/source/ + fi +} |