summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sobczak <chris@sobczak.family>2026-07-04 16:05:06 -0700
committerChris Sobczak <chris@sobczak.family>2026-07-04 16:05:06 -0700
commit82c4d46393e19b238a2ce8dcd32e54f1aafb56ff (patch)
treece67601729b971ea946870a9c5db06b2683cc790
parentbae201675129566d62358801058ff34a191e9592 (diff)
simplyify
-rw-r--r--gui-wm/dwl/dwl-9999.ebuild18
1 files changed, 9 insertions, 9 deletions
diff --git a/gui-wm/dwl/dwl-9999.ebuild b/gui-wm/dwl/dwl-9999.ebuild
index 508f07a..d984c08 100644
--- a/gui-wm/dwl/dwl-9999.ebuild
+++ b/gui-wm/dwl/dwl-9999.ebuild
@@ -128,16 +128,9 @@ DEPEND="
BDEPEND="
>=dev-libs/wayland-protocols-1.32
>=dev-util/wayland-scanner-1.23
- dev-vcs/git
virtual/pkgconfig
"
-MAKE_ARGS=(
- PREFIX="${EPREFIX}/usr"
- XWAYLAND="-DXWAYLAND"
- XLIBS="xcb xcb-icccm"
-)
-
# The following src_configure function is implemented as default by portage, so
# you only need to call it if you need a different behaviour.
#src_configure() {
@@ -173,7 +166,11 @@ src_compile() {
# worked around.
tc-export CC PKG_CONFIG
- emake "${MAKE_ARGS[@]}" dwl
+ emake \
+ PREFIX="${EPREFIX}/usr" \
+ XWAYLAND="-DXWAYLAND" \
+ XLIBS="xcb xcb-icccm" \
+ dwl
}
# The following src_install function is implemented as default by portage, so
@@ -203,7 +200,10 @@ src_install() {
# Again, verify the Makefiles! We don't want anything falling
# outside of ${D}.
- emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
+ emake \
+ PREFIX="${EPREFIX}/usr" \
+ DESTDIR="${D}" \
+ install
dodoc CHANGELOG.md README.md
}