summaryrefslogtreecommitdiff
path: root/x11-plugins/wmXName
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /x11-plugins/wmXName
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'x11-plugins/wmXName')
-rw-r--r--x11-plugins/wmXName/Manifest1
-rw-r--r--x11-plugins/wmXName/files/wmXName-0.1-fno-common.patch35
-rw-r--r--x11-plugins/wmXName/metadata.xml9
-rw-r--r--x11-plugins/wmXName/wmXName-0.1-r1.ebuild48
4 files changed, 0 insertions, 93 deletions
diff --git a/x11-plugins/wmXName/Manifest b/x11-plugins/wmXName/Manifest
deleted file mode 100644
index 040ddc3152ab..000000000000
--- a/x11-plugins/wmXName/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wmXName-0.01.tgz 10757 BLAKE2B cebe95354227f7a47fca90dd96225f4972edbcecbaf207d4275993cf1d5acff2fa85fb9ef4322130b98d62d2688317d94a6f513d9106d7fe7f1aa92f5e294055 SHA512 1b94e70fd1cb89b0fa47d488d85d981316efc636d4ef743e9445add38b48d33b1baa1ce38192e6d3b476c0f65aa312394b7dd9edc3f43ccef4f7bae807828b0b
diff --git a/x11-plugins/wmXName/files/wmXName-0.1-fno-common.patch b/x11-plugins/wmXName/files/wmXName-0.1-fno-common.patch
deleted file mode 100644
index a4cb9c0cb043..000000000000
--- a/x11-plugins/wmXName/files/wmXName-0.1-fno-common.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff -Naur wmXName-0.01.orig/xutils.c wmXName-0.01/xutils.c
---- wmXName-0.01.orig/xutils.c 2002-06-28 11:34:26.000000000 +0200
-+++ wmXName-0.01/xutils.c 2020-06-13 11:02:20.393108819 +0200
-@@ -52,6 +52,11 @@
- GC NormalGC;
- XpmIcon wmgen;
- Pixmap pixmask;
-+Display *display;
-+Window Root;
-+Window iconwin, win;
-+int screen;
-+int DisplayDepth;
-
-
-
-diff -Naur wmXName-0.01.orig/xutils.h wmXName-0.01/xutils.h
---- wmXName-0.01.orig/xutils.h 2002-06-28 11:34:59.000000000 +0200
-+++ wmXName-0.01/xutils.h 2020-06-13 11:02:25.886113159 +0200
-@@ -18,11 +18,11 @@
- /*
- * Global variable
- */
--Display *display;
--Window Root;
--Window iconwin, win;
--int screen;
--int DisplayDepth;
-+extern Display *display;
-+extern Window Root;
-+extern Window iconwin, win;
-+extern int screen;
-+extern int DisplayDepth;
-
-
-
diff --git a/x11-plugins/wmXName/metadata.xml b/x11-plugins/wmXName/metadata.xml
deleted file mode 100644
index 0cd5b9db476b..000000000000
--- a/x11-plugins/wmXName/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>voyageur@gentoo.org</email>
- <name>Bernard Cafarelli</name>
-</maintainer>
-
-</pkgmetadata>
diff --git a/x11-plugins/wmXName/wmXName-0.1-r1.ebuild b/x11-plugins/wmXName/wmXName-0.1-r1.ebuild
deleted file mode 100644
index 793841b97984..000000000000
--- a/x11-plugins/wmXName/wmXName-0.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_PV="0.01"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="dock-app showing you status of your XName hosted zones"
-HOMEPAGE="http://source.xname.org/"
-SRC_URI="http://source.xname.org/${MY_P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-COMMON_DEPEND=">=x11-libs/libXpm-3.5.7
- >=x11-libs/libX11-1.1.4
- >=x11-libs/libXext-1.0.3"
-
-RDEPEND="${COMMON_DEPEND}
- >=dev-lang/perl-5.8.8-r5
- >=www-client/lynx-2.8.6-r2"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- #some magic sed to fix CFLAGS
- sed -i "s/-O2 -Wall/$CFLAGS/" "${S}/Makefile" || die
-
- #INSTALL file actually contains use instructions
- mv "${S}/INSTALL" "${S}/README" || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" SYSTEM="${LDFLAGS}"
-}
-
-src_install() {
- dobin wmXName GrabXName
- dodoc README config.sample
-}