You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-...

47 lines
938 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg-utils toolchain-funcs
MY_P="${PN%-icon-theme}-${PV}"
DESCRIPTION="Elementary icons forked from upstream, extended and maintained for Xfce"
HOMEPAGE="https://github.com/shimmerproject/elementary-xfce"
SRC_URI="https://github.com/shimmerproject/elementary-xfce/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="public-domain GPL-1 GPL-2 GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="media-gfx/optipng
sys-apps/findutils
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3"
S="${WORKDIR}/${MY_P}"
src_configure() {
# custom script
./configure --prefix="${EPREFIX}/usr" || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
# delete dangling doc links
find -L "${D}" -type l -delete || die
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}