summaryrefslogtreecommitdiff
path: root/sys-boot/raincoat
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-10-13 22:19:36 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-10-14 23:22:23 +0100
commit4b19be30aa626b327c885dae62c559ec0e9fb935 (patch)
tree76e74807bc479502e13866b581b6bf86734ec634 /sys-boot/raincoat
parent30d6f67c98d149508509d5e86f176d558793acc0 (diff)
gentoo resync : 13.10.2019
Diffstat (limited to 'sys-boot/raincoat')
-rw-r--r--sys-boot/raincoat/Manifest4
-rw-r--r--sys-boot/raincoat/files/raincoat-0.11-build.patch13
-rw-r--r--sys-boot/raincoat/metadata.xml9
-rw-r--r--sys-boot/raincoat/raincoat-0.11.ebuild27
4 files changed, 0 insertions, 53 deletions
diff --git a/sys-boot/raincoat/Manifest b/sys-boot/raincoat/Manifest
deleted file mode 100644
index d8c1fa10189b..000000000000
--- a/sys-boot/raincoat/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX raincoat-0.11-build.patch 420 BLAKE2B cc503181d06d8fd5369f2e51520a0cc7f702b0e948d6020131280008d0669b008fa85242a45d0e10daf855f8c02e91ba3a83eab4d5855744cbd22aa36a90755a SHA512 fb1d0735e9f29ce5173fd2eb7467527d025146f235b3930973e9a0b91d3a8015909bac506fb17c16da447ebf08d6ca366622c845cce08d40e8743398773255b8
-DIST raincoat-0.11.tbz2 240759 BLAKE2B 00601d7eb4596f790746bbab356b3ee28a11634d37dc2d2cb0e85b34ee9309484957c96d33c2d8478a849b834d8d9197cae717ee0ce4263a24e792bc57139349 SHA512 acd56386f8b0de2b2e268b62304e5b1323a96865394993fb76004c92c09992185b6fe6c7bf2d001ff5e5f2cc7e067d9962229aceb17838f7661890f5b4c4b2f1
-EBUILD raincoat-0.11.ebuild 538 BLAKE2B b593b2f077960e51a08dbf57929ebfffdd3dc36fb5c382dd883a2a8e42cf204a401541dde76f78ec63c8af54e36c1e4e8f81af252b31499c2351cdbff28e880c SHA512 2a279ee6b0fd70e0e412d26f52fa0fe6feda7d09c370952192b68536b80782f25e9c05c3e994a95b675995be7b0d41fe3a24de1e892a52c576a51099126043bf
-MISC metadata.xml 314 BLAKE2B 8b0c07d92c87c8f193aaee67afa4dcf69982d4a48271a56b3e31f0984a7d76ff639db092ab19ef14af66a4c0ba234f648b6099b746be2a924575b71b39cbdd98 SHA512 f158eec39ec9e76752afff57f4b80c39e6459d53871140c982754e2bdfcb432a3ee866087ec8c95f53a8822d89a25792009ad1c4256202682d461fd7ce3ff2c9
diff --git a/sys-boot/raincoat/files/raincoat-0.11-build.patch b/sys-boot/raincoat/files/raincoat-0.11-build.patch
deleted file mode 100644
index a83e73dd523f..000000000000
--- a/sys-boot/raincoat/files/raincoat-0.11-build.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 96f8662..db2b78c 100755
---- a/Makefile
-+++ b/Makefile
-@@ -2,7 +2,7 @@ all: raincoat
-
- raincoat: src/raincoat.c src/BootFlash.c src/boot.h src/BootFlash.h
- mkdir -p bin
-- gcc -static -O2 -Wall -Werror -o ./bin/raincoat src/raincoat.c src/BootFlash.c
-+ $(CC) -static $(CFLAGS) $(CPPFLAGS) -Wall -o ./bin/raincoat src/raincoat.c src/BootFlash.c $(LDFLAGS)
-
- clean:
- rm -f src/*.o
diff --git a/sys-boot/raincoat/metadata.xml b/sys-boot/raincoat/metadata.xml
deleted file mode 100644
index 237bbf315957..000000000000
--- a/sys-boot/raincoat/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>Flash the Xbox boot chip</longdescription>
- <upstream>
- <remote-id type="sourceforge">xbox-linux</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-boot/raincoat/raincoat-0.11.ebuild b/sys-boot/raincoat/raincoat-0.11.ebuild
deleted file mode 100644
index c9649f784769..000000000000
--- a/sys-boot/raincoat/raincoat-0.11.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="Flash the Xbox boot chip"
-HOMEPAGE="https://sourceforge.net/projects/xbox-linux/"
-SRC_URI="https://sourceforge.net/projects/xbox-linux/files/Other/Raincoat/${P}.tbz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-build.patch
-}
-
-src_install() {
- dodir /etc /usr/bin
- emake install DESTDIR="${D}" || die
- dodoc docs/README
-}