mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
43 lines
941 B
Bash
43 lines
941 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
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"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~sparc x86"
|
|
|
|
RDEPEND=">=x11-wm/icewm-1.2.6"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
ICEICONSDIR="/usr/share/icewm/icons/iceicons"
|
|
|
|
src_install() {
|
|
insinto "${ICEICONSDIR}"
|
|
doins -r icons/.
|
|
|
|
fowners -R root:0 "${ICEICONSDIR}"
|
|
fperms -R o-w "${ICEICONSDIR}"
|
|
|
|
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
|
|
}
|