summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-10 14:26:55 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-10 14:26:55 +0200
commit75ead0c07c7ab1d35cfaa62ca4ce79e862290b72 (patch)
treec393ae33c6b207031131ff0f65c6fb6dbfe44fde /sys-boot
parentsys-auth/icmpdn: Remove last-rited pkg (diff)
downloadgentoo-75ead0c07c7ab1d35cfaa62ca4ce79e862290b72.tar.gz
gentoo-75ead0c07c7ab1d35cfaa62ca4ce79e862290b72.tar.bz2
gentoo-75ead0c07c7ab1d35cfaa62ca4ce79e862290b72.zip
sys-boot/raincoat: Remove last-rited pkg
Closes: https://bugs.gentoo.org/693908 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/raincoat/Manifest1
-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, 50 deletions
diff --git a/sys-boot/raincoat/Manifest b/sys-boot/raincoat/Manifest
deleted file mode 100644
index 095cfdfd0b0b..000000000000
--- a/sys-boot/raincoat/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST raincoat-0.11.tbz2 240759 BLAKE2B 00601d7eb4596f790746bbab356b3ee28a11634d37dc2d2cb0e85b34ee9309484957c96d33c2d8478a849b834d8d9197cae717ee0ce4263a24e792bc57139349 SHA512 acd56386f8b0de2b2e268b62304e5b1323a96865394993fb76004c92c09992185b6fe6c7bf2d001ff5e5f2cc7e067d9962229aceb17838f7661890f5b4c4b2f1
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
-}