2022-05-20 11:55:50 +03:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2019-03-06 08:53:25 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-12-21 15:25:00 +03:00
|
|
|
EAPI=7
|
2019-03-06 08:53:25 +03:00
|
|
|
GNOME_ORG_MODULE="gnome-themes-extra"
|
|
|
|
|
|
|
|
inherit autotools gnome.org xdg
|
|
|
|
|
|
|
|
DESCRIPTION="Standard Themes for GNOME Applications"
|
|
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-themes-extra"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
|
|
SLOT="0"
|
2022-05-20 11:55:50 +03:00
|
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
|
2019-03-06 08:53:25 +03:00
|
|
|
|
|
|
|
# Depend on gsettings-desktop-schemas-3.4 to make sure 3.2 users don't lose
|
|
|
|
# their default background image
|
|
|
|
RDEPEND="
|
|
|
|
>=gnome-base/gsettings-desktop-schemas-3.4
|
|
|
|
"
|
2020-12-21 15:25:00 +03:00
|
|
|
BDEPEND="
|
2019-03-06 08:53:25 +03:00
|
|
|
>=dev-util/intltool-0.40
|
|
|
|
sys-devel/gettext
|
|
|
|
virtual/pkgconfig
|
|
|
|
"
|
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
# Leave build of gtk+:2 engine to x11-themes/gtk-engines-adwaita
|
|
|
|
"${FILESDIR}"/${PN}-3.22.2-exclude-engine.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
2020-12-21 15:25:00 +03:00
|
|
|
econf \
|
2019-03-06 08:53:25 +03:00
|
|
|
--disable-static \
|
|
|
|
--disable-gtk2-engine \
|
|
|
|
--disable-gtk3-engine \
|
|
|
|
GTK_UPDATE_ICON_CACHE=$(type -P true)
|
|
|
|
}
|