gentoo/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.1.ebuild
Sam James da306bd371
x11-themes/gtk-engines-rezlooks: Stabilize 0.6.1 amd64, #954758
Signed-off-by: Sam James <sam@gentoo.org>
2025-04-27 10:41:39 +01:00

35 lines
706 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Rezlooks GTK+ Engine"
HOMEPAGE="https://github.com/t-wissmann/rezlooks-gtk-engine"
SRC_URI="https://github.com/t-wissmann/rezlooks-gtk-engine/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/rezlooks-gtk-engine-"${PV}"/rezlooks
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
RDEPEND="x11-libs/gtk+:2"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
eautoreconf # update stale autotools
}
src_configure() {
econf --enable-animation
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}