summaryrefslogtreecommitdiff
path: root/x11-plugins/asmon
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/asmon
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'x11-plugins/asmon')
-rw-r--r--x11-plugins/asmon/Manifest1
-rw-r--r--x11-plugins/asmon/asmon-0.71-r1.ebuild45
-rw-r--r--x11-plugins/asmon/files/asmon-0.71-fno-common.patch22
-rw-r--r--x11-plugins/asmon/files/asmon-0.71-list.patch125
-rw-r--r--x11-plugins/asmon/metadata.xml5
5 files changed, 0 insertions, 198 deletions
diff --git a/x11-plugins/asmon/Manifest b/x11-plugins/asmon/Manifest
deleted file mode 100644
index a814dd78a457..000000000000
--- a/x11-plugins/asmon/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST asmon-0.71.tar.gz 48359 BLAKE2B 0aa76a5d09f64a21a13ae735eefbe5b0f7504073da8c1aad5c009b1435a6f800eb191093542bee46677033a7a995100af051375ceab6f3c57d302f07747a4d16 SHA512 9ae6668da2507335268e046f216dbb5ebb11f3d9d7a1f7c994b297e791b33ce70a804a75f98d23a0a7a05916515802ca488d0ff44fd51e2737bb3686120700ef
diff --git a/x11-plugins/asmon/asmon-0.71-r1.ebuild b/x11-plugins/asmon/asmon-0.71-r1.ebuild
deleted file mode 100644
index e34cd9a4a226..000000000000
--- a/x11-plugins/asmon/asmon-0.71-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="WindowMaker/AfterStep system monitor dockapp"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.orig.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${P}/${PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86"
-
-RDEPEND="
- x11-libs/libXext
- x11-libs/libXpm
- x11-libs/libX11
-"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
-"
-
-src_prepare() {
- default
-
- sed -i -e "s:gcc:$(tc-getCC):g" Makefile || die
-
- cd "../wmgeneral" || die
- eapply "${FILESDIR}/${P}-list.patch"
- eapply "${FILESDIR}/${P}-fno-common.patch"
-}
-
-src_compile() {
- emake clean
- emake SOLARIS="${CFLAGS}" LIBDIR="${LDFLAGS}"
-}
-
-src_install() {
- dobin ${PN}
- dodoc ../Changelog
-}
diff --git a/x11-plugins/asmon/files/asmon-0.71-fno-common.patch b/x11-plugins/asmon/files/asmon-0.71-fno-common.patch
deleted file mode 100644
index 831d6b258163..000000000000
--- a/x11-plugins/asmon/files/asmon-0.71-fno-common.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://bugs.gentoo.org/708118
---- a/wmgeneral.c
-+++ b/wmgeneral.c
-@@ -50,6 +50,7 @@ Window iconwin, win;
- GC NormalGC;
- XpmIcon wmgen;
- Pixmap pixmask;
-+Display *display;
-
- /*****************/
- /* Mouse Regions */
---- a/wmgeneral.h
-+++ b/wmgeneral.h
-@@ -28,7 +28,7 @@ typedef struct {
- /* Global variable */
- /*******************/
-
--Display *display;
-+extern Display *display;
-
- /***********************/
- /* Function Prototypes */
diff --git a/x11-plugins/asmon/files/asmon-0.71-list.patch b/x11-plugins/asmon/files/asmon-0.71-list.patch
deleted file mode 100644
index 89e9ef321673..000000000000
--- a/x11-plugins/asmon/files/asmon-0.71-list.patch
+++ /dev/null
@@ -1,125 +0,0 @@
---- a/list.c
-+++ b/list.c
-@@ -38,7 +38,7 @@
-
- /* Return a cons cell produced from (head . tail)
-
--INLINE LinkedList*
-+LinkedList*
- list_cons(void* head, LinkedList* tail)
- {
- LinkedList* cell;
-@@ -51,7 +51,7 @@
-
- /* Return the length of a list, list_length(NULL) returns zero
-
--INLINE int
-+int
- list_length(LinkedList* list)
- {
- int i = 0;
-@@ -66,7 +66,7 @@
- /* Return the Nth element of LIST, where N count from zero. If N
- larger than the list length, NULL is returned
-
--INLINE void*
-+void*
- list_nth(int index, LinkedList* list)
- {
- while(index-- != 0)
-@@ -81,7 +81,7 @@
-
- /* Remove the element at the head by replacing it by its successor
-
--INLINE void
-+void
- list_remove_head(LinkedList** list)
- {
- if (!*list) return;
-@@ -101,7 +101,7 @@
-
- /* Remove the element with `car' set to ELEMENT
- /*
--INLINE void
-+void
- list_remove_elem(LinkedList** list, void* elem)
- {
- while (*list)
-@@ -112,7 +112,7 @@
- }
-
-
--INLINE LinkedList *
-+LinkedList *
- list_remove_elem(LinkedList* list, void* elem)
- {
- LinkedList *tmp;
-@@ -132,7 +132,7 @@
-
- /* Return element that has ELEM as car
-
--INLINE LinkedList*
-+LinkedList*
- list_find(LinkedList* list, void* elem)
- {
- while(list)
-@@ -146,7 +146,7 @@
-
- /* Free list (backwards recursive)
-
--INLINE void
-+void
- list_free(LinkedList* list)
- {
- if(list)
-@@ -158,7 +158,7 @@
-
- /* Map FUNCTION over all elements in LIST
-
--INLINE void
-+void
- list_mapcar(LinkedList* list, void(*function)(void*))
- {
- while(list)
---- a/list.h
-+++ b/list.h
-@@ -29,31 +29,25 @@
- #ifndef __LIST_H_
- #define __LIST_H_
-
--#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
--# define INLINE inline
--#else
--# define INLINE
--#endif
--
- typedef struct LinkedList {
- void *head;
- struct LinkedList *tail;
- } LinkedList;
-
--INLINE LinkedList* list_cons(void* head, LinkedList* tail);
-+LinkedList* list_cons(void* head, LinkedList* tail);
-
--INLINE int list_length(LinkedList* list);
-+int list_length(LinkedList* list);
-
--INLINE void* list_nth(int index, LinkedList* list);
-+void* list_nth(int index, LinkedList* list);
-
--INLINE void list_remove_head(LinkedList** list);
-+void list_remove_head(LinkedList** list);
-
--INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem);
-+LinkedList *list_remove_elem(LinkedList* list, void* elem);
-
--INLINE void list_mapcar(LinkedList* list, void(*function)(void*));
-+void list_mapcar(LinkedList* list, void(*function)(void*));
-
--INLINE LinkedList*list_find(LinkedList* list, void* elem);
-+LinkedList*list_find(LinkedList* list, void* elem);
-
--INLINE void list_free(LinkedList* list);
-+void list_free(LinkedList* list);
-
- #endif
diff --git a/x11-plugins/asmon/metadata.xml b/x11-plugins/asmon/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/x11-plugins/asmon/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>