summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2023-01-27 11:58:01 +0100
committerJakov Smolić <jsmolic@gentoo.org>2023-01-27 12:07:20 +0100
commitaf2c014241415122f7fc4734905aef2bebf884ae (patch)
treec3365c06be0a63e1b6d0a72fb9c36752d9ff2269
parentdev-python/ndg-httpsclient: treeclean (diff)
downloadgentoo-af2c014241415122f7fc4734905aef2bebf884ae.tar.gz
gentoo-af2c014241415122f7fc4734905aef2bebf884ae.tar.bz2
gentoo-af2c014241415122f7fc4734905aef2bebf884ae.zip
x11-wm/xoat: treeclean
Bug: https://bugs.gentoo.org/888173 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
-rw-r--r--profiles/package.mask1
-rw-r--r--x11-wm/xoat/metadata.xml8
-rw-r--r--x11-wm/xoat/xoat-9999.ebuild49
3 files changed, 0 insertions, 58 deletions
diff --git a/profiles/package.mask b/profiles/package.mask
index 7092e286d556..095219a7a15f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -764,7 +764,6 @@ media-plugins/kodi-peripheral-steamcontroller
# maintainer-needed packages for a long time.
# Removal: 2023-01-23. Bug #888173.
x11-misc/xowl
-x11-wm/xoat
# Georgy Yakovlev <gyakovlev@gentoo.org> (2022-12-19)
# This version currently is not compatible with kernel build (yet)
diff --git a/x11-wm/xoat/metadata.xml b/x11-wm/xoat/metadata.xml
deleted file mode 100644
index 44fb5a523ab4..000000000000
--- a/x11-wm/xoat/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="github">seanpringle/xoat</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/x11-wm/xoat/xoat-9999.ebuild b/x11-wm/xoat/xoat-9999.ebuild
deleted file mode 100644
index 31b9838afc84..000000000000
--- a/x11-wm/xoat/xoat-9999.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit git-r3 savedconfig toolchain-funcs
-
-DESCRIPTION="X Obstinate Asymmetric Tiler"
-HOMEPAGE="https://github.com/seanpringle/xoat"
-EGIT_REPO_URI="https://github.com/seanpringle/xoat"
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
- x11-libs/libX11
- x11-libs/libXft
- x11-libs/libXinerama
-"
-RDEPEND="
- ${DEPEND}
- !savedconfig? ( x11-misc/dmenu )
-"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- restore_config config.h
-}
-
-src_configure() {
- tc-export CC PKG_CONFIG
-}
-
-src_compile() {
- XOAT_COMPILE=(
- ${CC} -o ${PN} ${PN}.c ${CFLAGS} -std=c99 ${LDFLAGS}
- $(${PKG_CONFIG} --cflags --libs x11 xinerama xft)
- )
- echo ${XOAT_COMPILE[@]}
- ${XOAT_COMPILE[@]} || die
-}
-
-src_install() {
- dobin xoat
- dodoc status xinitrc xoat.md xoatrc
- doman xoat.1
- save_config config.h
-}