summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-09-04 20:05:45 +0200
committerJoonas Niilola <juippis@gentoo.org>2024-09-24 10:01:15 +0300
commitd3a9d4ea0f13570d110b71a591b7418918cc24c6 (patch)
tree17c5c47dc72c21a0abc6a99e4d0afbf250d3b89c /x11-wm
parentx11-misc/urxvt-font-size: remove live ebuild (diff)
downloadgentoo-d3a9d4ea0f13570d110b71a591b7418918cc24c6.tar.gz
gentoo-d3a9d4ea0f13570d110b71a591b7418918cc24c6.tar.bz2
gentoo-d3a9d4ea0f13570d110b71a591b7418918cc24c6.zip
x11-wm/wmfs: remove live ebuild
Remove live ebuild since upstream wasn't updated for a couple of years. I think it makes no sense to keep these ebuilds, especially when the non-live ebuild is already at HEAD. Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/38439 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/wmfs/wmfs-99999999.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/x11-wm/wmfs/wmfs-99999999.ebuild b/x11-wm/wmfs/wmfs-99999999.ebuild
deleted file mode 100644
index 4d856eab612c..000000000000
--- a/x11-wm/wmfs/wmfs-99999999.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit git-r3 toolchain-funcs
-
-DESCRIPTION="Window Manager From Scratch, A tiling window manager highly configurable"
-HOMEPAGE="https://github.com/xorg62/wmfs"
-EGIT_REPO_URI="https://github.com/xorg62/wmfs"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="+imlib2 +xinerama"
-
-RDEPEND="
- media-libs/freetype
- media-libs/imlib2[X]
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXinerama
- x11-libs/libXrandr
-"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
- elibc_musl? ( sys-libs/queue-standalone )
-"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-99999999-Debian.patch
- "${FILESDIR}"/${PN}-99999999-desktop.patch
- "${FILESDIR}"/${PN}-99999999-fno-common.patch
- "${FILESDIR}"/${PN}-99999999-strncat.patch
-)
-DOCS=(
- README
- scripts/keybind_help.sh
- scripts/status.sh
-)
-
-src_configure() {
- tc-export CC
- # not autotools based
- local ECHO
- for ECHO in echo ''; do
- ${ECHO} sh configure \
- $(usex xinerama '' --without-xinerama) \
- $(usex imlib2 '' --without-imlib2) \
- --prefix /usr \
- --man-prefix /usr/share/man \
- --xdg-config-dir /etc/xdg \
- || die
- done
-}