diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-11-06 10:47:01 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-11-06 10:47:01 +0000 |
commit | 832fbadeabec537e8b8c32e2555728ba5e847c88 (patch) | |
tree | f65d1ae7c1c3c617f4f603ad59ebf0f6e355971d /x11-themes/redcore-artwork-core | |
parent | c53237af9916258de235fd7d779b6d0dd3fdeb80 (diff) |
adjust core artwork
Diffstat (limited to 'x11-themes/redcore-artwork-core')
-rw-r--r-- | x11-themes/redcore-artwork-core/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/redcore-artwork-core/redcore-artwork-core-1.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/x11-themes/redcore-artwork-core/Manifest b/x11-themes/redcore-artwork-core/Manifest new file mode 100644 index 00000000..d1a56788 --- /dev/null +++ b/x11-themes/redcore-artwork-core/Manifest @@ -0,0 +1 @@ +DIST redcore-artwork-core-1.tar.xz 18888432 SHA256 bc86b9fa45289742e25761151e0a38b20f9b3b603a55e78f266ed2b6c0f3d858 SHA512 d75218e7db895fe24398ee3e7abb951940abe72239970ade8d0e90f0cb0a388414324fbd9502ff6813361ccf21e569b522bedc06d9e76eb9e31099acb27c08c9 WHIRLPOOL d24fd4f5852b040f46a2fb46868b7ac14439b74d4483a3d9192cfe0fde9401a25e732e427f43e5fcc9c67fecceb402a85004d55f00c1526964d06cf800b19969 diff --git a/x11-themes/redcore-artwork-core/redcore-artwork-core-1.ebuild b/x11-themes/redcore-artwork-core/redcore-artwork-core-1.ebuild new file mode 100644 index 00000000..fe2d4936 --- /dev/null +++ b/x11-themes/redcore-artwork-core/redcore-artwork-core-1.ebuild @@ -0,0 +1,51 @@ +# Copyright 2016 Redcore Linux +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 +inherit eutils mount-boot + +DESCRIPTION="Offical Redcore Linux Core Artwork" +HOMEPAGE="http://redcorelinux.org" +SRC_URI="http://redcorelinux.org/distfiles/${CATEGORY}/${PN}/"${PN}"-${PV}.tar.xz" + +LICENSE="CCPL-Attribution-ShareAlike-3.0" +SLOT="0" +KEYWORDS="x86 amd64" +IUSE="" +RDEPEND="sys-apps/findutils" + +S="${WORKDIR}"/"${PN}" + +src_install() { + # Cursors + insinto /usr/share/cursors/xorg-x11/ + doins -r "${S}"/mouse/RezoBlue + + # Wallpapers + insinto /usr/share/backgrounds/ + doins -r "${S}"/background/nature + + # Logos + insinto /usr/share/pixmaps/ + doins "${S}"/logo/*.png + + # Plymouth theme + + insinto /usr/share/plymouth + doins "${S}"/plymouth/bizcom.png # back to our bizcom + insinto /usr/share/plymouth/themes + doins -r "${S}"/plymouth/themes/redcore + + # Apply our tricks + + insinto /usr/share/cursors/xorg-x11 + dosym RezoBlue /usr/share/cursors/xorg-x11/default || "RezoBlue not found" #set default xcursor +} + +pkg_postinst() { + # mount boot first + mount-boot_mount_boot_partition + + einfo "Please report bugs or glitches to" + einfo "V3n3RiX" +} |