diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /net-misc/wol | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'net-misc/wol')
| -rw-r--r-- | net-misc/wol/Manifest | 1 | ||||
| -rw-r--r-- | net-misc/wol/files/wol-0.7.1-Fix-config.h-test-consumption.patch | 35 | ||||
| -rw-r--r-- | net-misc/wol/files/wol-0.7.1-Fix-malloc-detection.patch | 39 | ||||
| -rw-r--r-- | net-misc/wol/files/wol-0.7.1-intl.patch | 44 | ||||
| -rw-r--r-- | net-misc/wol/files/wol-0.7.1-linux-headers.patch | 11 | ||||
| -rw-r--r-- | net-misc/wol/files/wol-0.7.1-musl.patch | 62 | ||||
| -rw-r--r-- | net-misc/wol/metadata.xml | 16 | ||||
| -rw-r--r-- | net-misc/wol/wol-0.7.1-r5.ebuild | 48 |
8 files changed, 0 insertions, 256 deletions
diff --git a/net-misc/wol/Manifest b/net-misc/wol/Manifest deleted file mode 100644 index 633f19b590cc..000000000000 --- a/net-misc/wol/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wol-0.7.1.tar.gz 445648 BLAKE2B 80e34ee5a588f7caec92c17d3455abec8227789c30dcde46ecbb75d2f5d7f2a852f6a8c11dea54c036e63db73e28f6d2aaa32bbf7b5708f23c9005f163a17f5f SHA512 233cbd038633c4b04a22710c04a8349d7706c6b4ff0554b6899ee3309349502a318f6fb05a4ad4c80cd373c362b2ad8818cb52a432d768f569e80f05658615a3 diff --git a/net-misc/wol/files/wol-0.7.1-Fix-config.h-test-consumption.patch b/net-misc/wol/files/wol-0.7.1-Fix-config.h-test-consumption.patch deleted file mode 100644 index 897517a97f44..000000000000 --- a/net-misc/wol/files/wol-0.7.1-Fix-config.h-test-consumption.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 1c16d04a3fc03a5f4c0cd54ff6f207de1062e9bd Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Tue, 25 Oct 2022 13:54:04 +0100 -Subject: [PATCH] Fix config.h test consumption - -Bug: https://bugs.gentoo.org/874420 ---- a/lib/ether.h -+++ b/lib/ether.h -@@ -35,7 +35,7 @@ - - #include "magic.h" - --#if !HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET && !HAVE_STRUCT_ETHER_ADDR_OCTET -+#if !defined(HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET) && !defined(HAVE_STRUCT_ETHER_ADDR_OCTET) - - struct - ether_addr -@@ -45,7 +45,7 @@ ether_addr - - #define ETHER_ADDR_OCTET ether_addr_octet - --#else /* HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET || HAVE_STRUCT_ETHER_ADDR_OCTET */ -+#else /* defined(HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET) || defined(HAVE_STRUCT_ETHER_ADDR_OCTET) */ - - #if HAVE_STRUCT_ETHER_ADDR_OCTET - #define ETHER_ADDR_OCTET octet -@@ -55,7 +55,7 @@ ether_addr - #define ETHER_ADDR_OCTET ether_addr_octet - #endif /* HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET */ - --#endif /* !HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET && !HAVE_STRUCT_ETHER_ADDR_OCTET */ -+#endif /* !defined(HAVE_STRUCT_ETHER_ADDR_ETHER_ADDR_OCTET) && !defined(HAVE_STRUCT_ETHER_ADDR_OCTET) */ - - - #if !defined(HAVE_ETHER_HOSTTON) diff --git a/net-misc/wol/files/wol-0.7.1-Fix-malloc-detection.patch b/net-misc/wol/files/wol-0.7.1-Fix-malloc-detection.patch deleted file mode 100644 index 6f783e9cfaed..000000000000 --- a/net-misc/wol/files/wol-0.7.1-Fix-malloc-detection.patch +++ /dev/null @@ -1,39 +0,0 @@ -https://bugs.gentoo.org/874420 - -From bcf98fe9a674a3784ad1a4f8eecc3b31a7b209a9 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Tue, 25 Oct 2022 14:00:23 +0100 -Subject: [PATCH] Fix malloc detection - ---- a/m4/getline.m4 -+++ b/m4/getline.m4 -@@ -18,6 +18,7 @@ AC_DEFUN([AM_FUNC_GETLINE], - # include <stdio.h> - # include <sys/types.h> - # include <string.h> -+# include <stdlib.h> - int main () - { /* Based on a test program from Karl Heuer. */ - char *line = NULL; ---- a/m4/malloc.m4 -+++ b/m4/malloc.m4 -@@ -14,6 +14,7 @@ AC_DEFUN([jm_FUNC_MALLOC], - - AC_CACHE_CHECK([for working malloc], jm_cv_func_working_malloc, - [AC_TRY_RUN([ -+ #include <stdlib.h> - char *malloc (); - int - main () ---- a/m4/realloc.m4 -+++ b/m4/realloc.m4 -@@ -14,7 +14,8 @@ AC_DEFUN([jm_FUNC_REALLOC], - - AC_CACHE_CHECK([for working realloc], jm_cv_func_working_realloc, - [AC_TRY_RUN([ -- char *realloc (); -+ #include <stdlib.h> -+ void *realloc(void *ptr, size_t size); - int - main () - { diff --git a/net-misc/wol/files/wol-0.7.1-intl.patch b/net-misc/wol/files/wol-0.7.1-intl.patch deleted file mode 100644 index 7475a012aa9e..000000000000 --- a/net-misc/wol/files/wol-0.7.1-intl.patch +++ /dev/null @@ -1,44 +0,0 @@ -Don't bundle outdated parts of glibc -https://bugs.gentoo.org/945522 - ---- a/Makefile.am -+++ b/Makefile.am -@@ -3,7 +3,7 @@ ACLOCAL_AMFLAGS = -I m4 - - EXTRA_DIST = config.rpath mkinstalldirs autogen.sh debian wol.spec - --SUBDIRS = intl demo doc include lib src m4 po -+SUBDIRS = demo doc include lib src m4 po - - MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in config.h.in~ \ - config.log config.status configure depcomp install-sh ltconfig ltmain.sh \ ---- a/configure.ac -+++ b/configure.ac -@@ -115,7 +115,7 @@ fi - dnl i18n - ALL_LINGUAS="de fr it es sv" - dnl don't pass symbol [external] since it will disable local intl directory --AM_GNU_GETTEXT -+AM_GNU_GETTEXT([external]) - - - dnl -@@ -253,7 +253,7 @@ CFLAGS="$CFLAGS -W -Wall -Wpointer-arith -Wimplicit-function-declaration" - - - dnl create the Makefiles --AC_OUTPUT([intl/Makefile po/Makefile.in -+AC_OUTPUT([po/Makefile.in - Makefile - demo/Makefile - doc/Makefile ---- a/lib/Makefile.am -+++ b/lib/Makefile.am -@@ -1,7 +1,6 @@ - noinst_LIBRARIES = libwrappers.a - - libwrappers_a_SOURCES = wrappers.h \ --getopt_int.h getopt.h getopt1.c getopt.c \ - usleep.c usleep.h \ - xmalloc.c xalloc.h \ - getstr.c getstr.h getline.c getline.h \ diff --git a/net-misc/wol/files/wol-0.7.1-linux-headers.patch b/net-misc/wol/files/wol-0.7.1-linux-headers.patch deleted file mode 100644 index e381d2a31a6a..000000000000 --- a/net-misc/wol/files/wol-0.7.1-linux-headers.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/magic.c -+++ b/src/magic.c -@@ -142,7 +142,7 @@ magic_assemble (struct magic *magic_buf, const char *mac_str, - } - - for (j = 0; j < MAC_LEN; ++j) -- m[j] = ea.ETHER_ADDR_OCTET[j]; -+ m[j] = ea.ether_addr_octet[j]; - } - - /* accommodate the packet chunk's size to the packet type */ diff --git a/net-misc/wol/files/wol-0.7.1-musl.patch b/net-misc/wol/files/wol-0.7.1-musl.patch deleted file mode 100644 index 3b9098554370..000000000000 --- a/net-misc/wol/files/wol-0.7.1-musl.patch +++ /dev/null @@ -1,62 +0,0 @@ ---- a/lib/getline.h -+++ b/lib/getline.h -@@ -27,6 +27,7 @@ - # endif - # endif - -+# if defined (__GLIBC__) - # if __GLIBC__ < 2 - int - getline PARAMS ((char **_lineptr, size_t *_n, FILE *_stream)); -@@ -34,5 +35,6 @@ - int - getdelim PARAMS ((char **_lineptr, size_t *_n, int _delimiter, FILE *_stream)); - # endif -+# endif - - #endif /* not GETLINE_H_ */ ---- a/lib/realloc.c -+++ b/lib/realloc.c -@@ -20,21 +20,15 @@ - #if HAVE_CONFIG_H - # include <config.h> - #endif --#undef realloc - --#include <sys/types.h> -- --char *malloc (); --char *realloc (); -+#include <stdlib.h> - - /* Change the size of an allocated block of memory P to N bytes, - with error checking. If N is zero, change it to 1. If P is NULL, - use malloc. */ - - char * --rpl_realloc (p, n) -- char *p; -- size_t n; -+rpl_realloc (char *p, size_t n) - { - if (n == 0) - n = 1; ---- a/lib/xmalloc.c -+++ b/lib/xmalloc.c -@@ -20,15 +20,7 @@ - #endif - - #include <sys/types.h> -- --#if STDC_HEADERS --# include <stdlib.h> --#else --void *calloc (); --void *malloc (); --void *realloc (); --void free (); --#endif -+#include <stdlib.h> - - #if ENABLE_NLS - # include <libintl.h> diff --git a/net-misc/wol/metadata.xml b/net-misc/wol/metadata.xml deleted file mode 100644 index 7f4b9cfe34c7..000000000000 --- a/net-misc/wol/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>conikost@gentoo.org</email> - <name>Conrad Kostecki</name> - </maintainer> - <longdescription> - This is wol, the Wake On Lan client. - It wakes up magic packet compliant machines such as boxes - with wake-on-lan ethernet-cards. - Some workstations provide SecureON which extends - wake-on-lan with a password. This feature is also provided by wol. - </longdescription> - <origin>baldeagleos-repo</origin> -</pkgmetadata> diff --git a/net-misc/wol/wol-0.7.1-r5.ebuild b/net-misc/wol/wol-0.7.1-r5.ebuild deleted file mode 100644 index 95ac026b872b..000000000000 --- a/net-misc/wol/wol-0.7.1-r5.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools toolchain-funcs - -DESCRIPTION="Implements Wake On LAN (Magic Paket) functionality in a small program" -HOMEPAGE="http://ahh.sourceforge.net/wol/" -SRC_URI="https://downloads.sourceforge.net/ahh/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~sparc x86" -IUSE="nls" - -PATCHES=( - "${FILESDIR}/${P}-musl.patch" - "${FILESDIR}/${P}-Fix-config.h-test-consumption.patch" - "${FILESDIR}/${P}-Fix-malloc-detection.patch" - "${FILESDIR}/${P}-linux-headers.patch" - "${FILESDIR}/${P}-intl.patch" -) - -src_prepare() { - default - - # https://bugs.gentoo.org/945522 - rm -r intl/ lib/getopt.h || die - - # bug #874420 - eautoreconf -} - -src_configure() { - export jm_cv_func_working_{re,m}alloc=yes - - local myeconfargs=( - --disable-rpath - $(use_enable nls) - ) - - econf ${myeconfargs[@]} -} - -src_compile() { - emake AR="$(tc-getAR)" -} |
