# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit savedconfig toolchain-funcs DESCRIPTION="speedie's fork of dmenu with .Xresources, Pywal, Alpha and more." HOMEPAGE="https://speedie.site" SRC_URI="https://raw.githubusercontent.com/speedie-de/dmenu/tarball/dmenu-spde-5.0.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" IUSE="xinerama" RDEPEND=" media-libs/fontconfig x11-libs/libX11 x11-libs/libXft xinerama? ( x11-libs/libXinerama ) media-libs/freetype " DEPEND="${RDEPEND} x11-base/xorg-proto " BDEPEND="virtual/pkgconfig" src_prepare() { default sed -i \ -e 's|^ @| |g' \ -e '/^ echo/d' \ Makefile || die restore_config config.def.h } src_compile() { emake CC="$(tc-getCC)" \ "XINERAMAFLAGS=$( usex xinerama "-DXINERAMA $( $(tc-getPKG_CONFIG) --cflags xinerama 2>/dev/null )" '' )" \ "XINERAMALIBS=$( usex xinerama "$( $(tc-getPKG_CONFIG) --libs xinerama 2>/dev/null)" '' )" } src_install() { emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install save_config config.def.h }