summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorbaldr333 <ra@afu.re>2023-12-21 19:54:24 -0500
committerbaldr333 <ra@afu.re>2023-12-21 19:54:24 -0500
commit2f3f4f6a3db13640bf8e097b41fd1dbfc3701f81 (patch)
treed22ea7370713249178a4899262768d88af46223e /x11-wm
Initial commit
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/dwm/Manifest1
-rw-r--r--x11-wm/dwm/dwm-9999.ebuild50
2 files changed, 51 insertions, 0 deletions
diff --git a/x11-wm/dwm/Manifest b/x11-wm/dwm/Manifest
new file mode 100644
index 0000000..04316ce
--- /dev/null
+++ b/x11-wm/dwm/Manifest
@@ -0,0 +1 @@
+EBUILD dwm-9999.ebuild 879 BLAKE2B 19547f9669e2afc9f7e65e6253b74787c89aff8c9ee572b1cf8132abe16c7f2b09e5124b3e478dd8e4b4e8eba50d8885a57ae00a894a38a446c3e402f306294a SHA512 3943b0268e8547f34e48e0f916f52ee8554651daa1ec871ff8617f5c87c9f26f09bf4497c23a01c4512a32b905bb6498114e6592325caf8a5f9c5e3b950c423b
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
+}