gentoo-ebuilds/x11-themes/elementary-xfce-icon-theme/elementary-xfce-icon-theme-0.21-r1.ebuild
Alexander Kurakin 46bbc150fa
x11-themes/elementary-xfce-icon-theme: fix DART icon
The patch has been obsolete by upstream's
f14cd8b70a.

Signed-off-by: Alexander Kurakin <kuraga333@mail.ru>
Closes: https://github.com/gentoo/gentoo/pull/40955
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-03-08 11:56:01 +01:00

41 lines
875 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg 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"
S="${WORKDIR}/${MY_P}"
# see AUTHORS
LICENSE="
GPL-3+
Apache-2.0
CC-BY-4.0 CC-BY-SA-4.0
"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~x86"
BDEPEND="
media-gfx/optipng
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3"
src_prepare() {
sed -i -e 's:-Werror -O0 -pipe:${CFLAGS} ${CPPFLAGS} ${LDFLAGS}:' \
svgtopng/Makefile || die
default
}
src_configure() {
# custom script
./configure --prefix="${EPREFIX}/usr" || die
}
src_compile() {
emake CC="$(tc-getCC)"
}