diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-02-15 11:54:07 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-02-15 11:55:13 +0100 |
commit | 2df2f8c58abbcfa3a76c0356325a0e7926bdfa7e (patch) | |
tree | 7ef4f0d446a388402f9565259d825ae100046168 /x11-themes/iceicons/iceicons-0.10.0-r1.ebuild | |
parent | dev-python/boto3: add new version 1.5.27 (diff) | |
download | gentoo-2df2f8c58abbcfa3a76c0356325a0e7926bdfa7e.tar.gz gentoo-2df2f8c58abbcfa3a76c0356325a0e7926bdfa7e.tar.bz2 gentoo-2df2f8c58abbcfa3a76c0356325a0e7926bdfa7e.zip |
x11-themes/iceicons: EAPI-6 revbump.
Dropped ppc64 keyword as x11-wm/icewm dropped it as well.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'x11-themes/iceicons/iceicons-0.10.0-r1.ebuild')
-rw-r--r-- | x11-themes/iceicons/iceicons-0.10.0-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild b/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild new file mode 100644 index 000000000000..738f93297aa8 --- /dev/null +++ b/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG icons for IceWM" +HOMEPAGE="http://sandbox.cz/~covex/icewm/iceicons/" +SRC_URI="http://sandbox.cz/~covex/icewm/iceicons/${PN}-default-${PV}.tar.gz" +LICENSE="LGPL-2.1" + +SLOT="0" +KEYWORDS="amd64 ~ppc sparc x86" +IUSE="" + +RDEPEND=">=x11-wm/icewm-1.2.6" +DEPEND="${RDEPEND}" + +S="${WORKDIR}" +ICEICONSDIR="/usr/share/icewm/icons/iceicons" + +src_install() { + dodir "${ICEICONSDIR}" + cp -pPR icons/* "${D}"/"${ICEICONSDIR}" || die + chown -R root:0 "${D}"/"${ICEICONSDIR}" || die + chmod -R o-w "${D}"/"${ICEICONSDIR}" || die + + dodoc CHANGELOG README TODO winoptions +} + +pkg_postinst() { + einfo + einfo "To use new IceWm icons, add following" + einfo "into your IceWm preference file:" + einfo "IconPath=\"${ICEICONSDIR}:${ICEICONSDIR}/menuitems\"" + einfo +} + +pkg_postrm(){ + einfo + einfo "Update your IceWm preference." + einfo +} |