From 2f3f4f6a3db13640bf8e097b41fd1dbfc3701f81 Mon Sep 17 00:00:00 2001 From: baldr333 Date: Thu, 21 Dec 2023 19:54:24 -0500 Subject: Initial commit --- x11-wm/dwm/dwm-9999.ebuild | 50 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 x11-wm/dwm/dwm-9999.ebuild (limited to 'x11-wm/dwm/dwm-9999.ebuild') diff --git a/x11-wm/dwm/dwm-9999.ebuild b/x11-wm/dwm/dwm-9999.ebuild new file mode 100644 index 0000000..1501e3e --- /dev/null +++ b/x11-wm/dwm/dwm-9999.ebuild @@ -0,0 +1,50 @@ +# 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 +} -- cgit v1.2.3