# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit git-r3 savedconfig toolchain-funcs DESCRIPTION="My fork of dwm" HOMEPAGE="https://git.afu.re/dwm/" EGIT_REPO_URI="https://git.afu.re/dwm" LICENSE="MIT" SLOT="0" KEYWORDS="" IUSE="xinerama" RDEPEND=" media-libs/fontconfig x11-libs/libX11 x11-libs/libXft xinerama? ( x11-libs/libXinerama ) " DEPEND=" ${RDEPEND} xinerama? ( x11-base/xorg-proto ) " src_prepare() { default sed -i \ -e "s/ -Os / /" \ -e "/^\(LDFLAGS\|CFLAGS\|CPPFLAGS\)/{s| = | += |g;s|-s ||g}" \ config.mk || die restore_config config.h } src_compile() { if use xinerama; then emake CC=$(tc-getCC) dwm else emake CC=$(tc-getCC) XINERAMAFLAGS="" XINERAMALIBS="" dwm fi } src_install() { emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install save_config config.h }