diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-embedded/dc-tool-ip | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-embedded/dc-tool-ip')
| -rw-r--r-- | dev-embedded/dc-tool-ip/Manifest | 1 | ||||
| -rw-r--r-- | dev-embedded/dc-tool-ip/dc-tool-ip-1.0.4-r1.ebuild | 42 | ||||
| -rw-r--r-- | dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-bfd-update.patch | 22 | ||||
| -rw-r--r-- | dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-headers.patch | 22 | ||||
| -rw-r--r-- | dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-makefile.patch | 45 | ||||
| -rw-r--r-- | dev-embedded/dc-tool-ip/metadata.xml | 11 |
6 files changed, 0 insertions, 143 deletions
diff --git a/dev-embedded/dc-tool-ip/Manifest b/dev-embedded/dc-tool-ip/Manifest deleted file mode 100644 index 38d1f7788123..000000000000 --- a/dev-embedded/dc-tool-ip/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dcload-ip-1.0.4-src.tar.gz 104758 BLAKE2B 4c8c52077b047da81341a133272a5569de9e6b304942c181da01a617a00243ace2847bbd380ac723710d91dc43d6de134d3a34e083ef9fa61471ba49ce5021f3 SHA512 c58f574bf13dd44a00395060af4c718593471242366d09dddb234490d20a6e0322a2c3853613aa1c8a5269802cf6434407d3f6c62c934e8b66f8fc1e86a12536 diff --git a/dev-embedded/dc-tool-ip/dc-tool-ip-1.0.4-r1.ebuild b/dev-embedded/dc-tool-ip/dc-tool-ip-1.0.4-r1.ebuild deleted file mode 100644 index 54bd407e0998..000000000000 --- a/dev-embedded/dc-tool-ip/dc-tool-ip-1.0.4-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Ethernet program loader for the Dreamcast" -HOMEPAGE="https://cadcdev.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/cadcdev/dcload-ip-${PV}-src.tar.gz" -S="${WORKDIR}/dcload-ip-${PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc" - -RDEPEND="sys-libs/binutils-libs" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-bfd-update.patch - "${FILESDIR}"/${P}-headers.patch - "${FILESDIR}"/${P}-makefile.patch -) - -src_configure() { - tc-export CC - append-cppflags -DPACKAGE -DPACKAGE_VERSION #465952 -} - -src_compile() { - emake -C host-src/tool -} - -src_install() { - dobin host-src/tool/dc-tool - - dodoc README NETWORK CHANGES - dodoc -r make-cd - use doc && dodoc -r example-src -} diff --git a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-bfd-update.patch b/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-bfd-update.patch deleted file mode 100644 index 2b3b32d7e3f4..000000000000 --- a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-bfd-update.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/host-src/tool/dc-tool.c -+++ b/host-src/tool/dc-tool.c -@@ -431,13 +431,13 @@ - if ((section->flags & SEC_HAS_CONTENTS) && (section->flags & SEC_LOAD)) { - printf("Section %s, ",section->name); - printf("lma 0x%x, ",section->lma); -- printf("size %d\n",section->_raw_size); -- if (section->_raw_size) { -- size += section->_raw_size; -- inbuf = malloc(section->_raw_size); -- bfd_get_section_contents(somebfd, section, inbuf, 0, section->_raw_size); -+ printf("size %d\n",section->rawsize); -+ if (section->rawsize) { -+ size += section->rawsize; -+ inbuf = malloc(section->rawsize); -+ bfd_get_section_contents(somebfd, section, inbuf, 0, section->rawsize); - -- send_data(inbuf, section->lma, section->_raw_size); -+ send_data(inbuf, section->lma, section->rawsize); - - free(inbuf); - } diff --git a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-headers.patch b/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-headers.patch deleted file mode 100644 index 678278262900..000000000000 --- a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-headers.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/host-src/tool/dc-tool.c -+++ b/host-src/tool/dc-tool.c -@@ -24,6 +24,7 @@ - #include <fcntl.h> - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #ifdef _WIN32 - #include <string.h> - #include <windows.h> ---- a/host-src/tool/syscalls.c -+++ b/host-src/tool/syscalls.c -@@ -24,6 +24,9 @@ - #include <fcntl.h> - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> -+#include <arpa/inet.h> -+#include <time.h> - #include <sys/time.h> - #include <unistd.h> - #include <utime.h> diff --git a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-makefile.patch b/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-makefile.patch deleted file mode 100644 index ae902dcc2a6b..000000000000 --- a/dev-embedded/dc-tool-ip/files/dc-tool-ip-1.0.4-makefile.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- a/host-src/tool/Makefile -+++ b/host-src/tool/Makefile -@@ -1,18 +1,13 @@ - include ../../Makefile.cfg - --CC = $(HOSTCC) --CFLAGS = $(HOSTCFLAGS) -DDREAMCAST_IP=\"$(DREAMCAST_IP)\" -DHAVE_GETOPT --INCLUDE = -I$(BFDINCLUDE) -+CPPFLAGS += -DDREAMCAST_IP=\"$(DREAMCAST_IP)\" -DHAVE_GETOPT - - OBJECTS = dc-tool.o syscalls.o - --.c.o: -- $(CC) $(CFLAGS) $(INCLUDE) -o $@ -c $< -- - all: dc-tool - - dc-tool: $(OBJECTS) -- $(CC) -o $@ $(OBJECTS) $(BFDLIB) -+ $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(BFDLIB) - - .PHONY : install - install: dc-tool ---- a/Makefile.cfg -+++ b/Makefile.cfg -@@ -8,8 +8,8 @@ - # the ones in your system - - # these must point to your sh-elf bfd, not the system one --BFDLIB = -L/usr/local/dcdev/lib -lbfd -liberty --BFDINCLUDE = /usr/local/dcdev/include -+BFDLIB = -lbfd -liberty -+BFDINCLUDE = - - # cygwin - # these must point to your sh-elf bfd, not the system one -@@ -24,7 +24,7 @@ - - # you generally shouldn't change this unless you are making forked - # versions (or test versions) --VERFLAGS = -DDCLOAD_VERSION=\"1.0.4\" -+CPPFLAGS += -DDCLOAD_VERSION=\"1.0.4\" - TARGETCFLAGS += $(VERFLAGS) - HOSTCFLAGS += $(VERFLAGS) - diff --git a/dev-embedded/dc-tool-ip/metadata.xml b/dev-embedded/dc-tool-ip/metadata.xml deleted file mode 100644 index 0a4c2273d2fa..000000000000 --- a/dev-embedded/dc-tool-ip/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>embedded@gentoo.org</email> - <name>Embedded Gentoo</name> - </maintainer> - <upstream> - <remote-id type="sourceforge">cadcdev</remote-id> - </upstream> -</pkgmetadata> |
