diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /x11-plugins/asmon | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'x11-plugins/asmon')
| -rw-r--r-- | x11-plugins/asmon/Manifest | 1 | ||||
| -rw-r--r-- | x11-plugins/asmon/asmon-0.71-r1.ebuild | 45 | ||||
| -rw-r--r-- | x11-plugins/asmon/files/asmon-0.71-fno-common.patch | 22 | ||||
| -rw-r--r-- | x11-plugins/asmon/files/asmon-0.71-list.patch | 125 | ||||
| -rw-r--r-- | x11-plugins/asmon/metadata.xml | 5 |
5 files changed, 198 insertions, 0 deletions
diff --git a/x11-plugins/asmon/Manifest b/x11-plugins/asmon/Manifest new file mode 100644 index 000000000000..a814dd78a457 --- /dev/null +++ b/x11-plugins/asmon/Manifest @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000000..e34cd9a4a226 --- /dev/null +++ b/x11-plugins/asmon/asmon-0.71-r1.ebuild @@ -0,0 +1,45 @@ +# 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 new file mode 100644 index 000000000000..831d6b258163 --- /dev/null +++ b/x11-plugins/asmon/files/asmon-0.71-fno-common.patch @@ -0,0 +1,22 @@ +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 new file mode 100644 index 000000000000..89e9ef321673 --- /dev/null +++ b/x11-plugins/asmon/files/asmon-0.71-list.patch @@ -0,0 +1,125 @@ +--- 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 new file mode 100644 index 000000000000..5f33304011d5 --- /dev/null +++ b/x11-plugins/asmon/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <origin>baldeagleos-repo</origin> +</pkgmetadata> |
