mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 06:57:59 +02:00
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>
41 lines
875 B
Bash
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)"
|
|
}
|