From d1a5df069d8b5c0d09fae56a7e49f8df5d883e81 Mon Sep 17 00:00:00 2001 From: dsaf Date: Wed, 29 Apr 2026 05:25:41 -0300 Subject: [PATCH] x11-wm/oxwm: drop 0.11.2 Signed-off-by: dsaf --- x11-wm/oxwm/oxwm-0.11.2.ebuild | 66 ---------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 x11-wm/oxwm/oxwm-0.11.2.ebuild diff --git a/x11-wm/oxwm/oxwm-0.11.2.ebuild b/x11-wm/oxwm/oxwm-0.11.2.ebuild deleted file mode 100644 index 78fe823d46..0000000000 --- a/x11-wm/oxwm/oxwm-0.11.2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ZIG_OPTIONAL="1" - -inherit git-r3 zig - -DESCRIPTION="OXWM — DWM but better. Dynamic window manager written in Zig with Lua config" -HOMEPAGE="https://github.com/tonybanters/oxwm" -EGIT_REPO_URI="https://github.com/tonybanters/oxwm.git" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - x11-libs/libX11 - x11-libs/libXft - x11-libs/libXinerama - media-libs/fontconfig - media-libs/freetype - dev-lang/lua -" - -DEPEND="${RDEPEND}" - -BDEPEND=" - ${RDEPEND} - dev-lang/zig - virtual/pkgconfig -" - -src_unpack() { - git-r3_src_unpack -} - -src_configure() { - zig_src_configure -} - -src_compile() { - zig_src_compile -Doptimize=ReleaseSmall -} - -src_install() { - zig_src_install - - insinto /usr/share/xsessions - doins "${S}/resources/oxwm.desktop" 2>/dev/null || true - - insinto /usr/share/oxwm - doins -r "${S}/templates" - - doman "${S}/resources/oxwm.1" 2>/dev/null || true -} - -pkg_postinst() { - elog "OXWM installed successfully!" - elog - elog "First launch will create ~/.config/oxwm/config.lua" - elog "Or manually run: oxwm --init" - elog - elog "Reload config anytime with: Super + Shift + R" -}