summaryrefslogtreecommitdiff
path: root/x11-misc/i855crt
diff options
context:
space:
mode:
Diffstat (limited to 'x11-misc/i855crt')
-rw-r--r--x11-misc/i855crt/Manifest5
-rw-r--r--x11-misc/i855crt/files/i855crt-0.4-makefile.patch16
-rw-r--r--x11-misc/i855crt/files/i855crt-i915support.diff70
-rw-r--r--x11-misc/i855crt/i855crt-0.4-r1.ebuild42
-rw-r--r--x11-misc/i855crt/metadata.xml12
5 files changed, 0 insertions, 145 deletions
diff --git a/x11-misc/i855crt/Manifest b/x11-misc/i855crt/Manifest
deleted file mode 100644
index 23bcf8de6072..000000000000
--- a/x11-misc/i855crt/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX i855crt-0.4-makefile.patch 351 BLAKE2B ef060908432899a333a29fe12d393d3d2d99d76d0619b071c0457b592c17edc0bf9af6f6994bfbcd73fdfd4bacd580387be1483e7a851ec88a38df532babb3b2 SHA512 41a96234b1864d04089c64a7859ec25f1388af519e107c5760954366d497a13dc6d623c5d26e870d52bcc8748e23b760662101a4205b2489aa002f25306155ac
-AUX i855crt-i915support.diff 2128 BLAKE2B 1fc795cafb494e084d2233bdebe74cb1881a9d14e2c78662a6ec4d7e24554734938a8f58cc723e2bbd4f70b5e2aa7080b13b7a2806291f9b5e934fbb5e3d9ea5 SHA512 96049b926a2007915bdaf71ba2252bb6556711d66b45eac69ee3223557e892ba8d742b520406a6f7fd20f3091f194015aec59613624abc1efaee5caad090caf4
-DIST i855crt-0.4.tar.gz 65209 BLAKE2B a7c8e041cb66cd711e1cdf7ac1ee0d6d218377b5c1183c11c658d3345de814a21b9eab0c4579c56db316a3b5fb3e430774174100f989c921e86650bc59adc1ee SHA512 8bd6d05334bcbe75f85c128ffe1179368fcf94bb0ba07c2ea7ce9b6ed38252ffc5dcd7a3208f6524be064bea595abda5a29f6a2960ad9f2f7b6f6ba528c36290
-EBUILD i855crt-0.4-r1.ebuild 719 BLAKE2B 47c38eb6e2af17e18d18c0c8432632abc63af1667f0dc86c9fe0c91d49adfa9936a92515465454baade689e8860611c5d1d56d9129ca631a4353ababfc03f34d SHA512 69dd89bc2b25da213a1fb33d0e19d99cf4b2e6ca28d64de321bce4dafdfd1fd77359e067211aca9fdd0c13458bda6be00ddc0a6cf668d0090e3c1d72607ee3bc
-MISC metadata.xml 413 BLAKE2B b34faa9cdea56299f3d481918b962a88ee55375bf847b06e37c0a3bffc7c60e0882e3140752a1af66044d04d36991ab23c780d2f7b5950f9f4101f78deda9bdc SHA512 2aae00f05bb0d6f6f78543ee549e282f07d1740b526a8855eead0c9afc393bb76b09b553c0ab5b8108b4b2059938073a595323666c73586a50e14e4955bdbe7c
diff --git a/x11-misc/i855crt/files/i855crt-0.4-makefile.patch b/x11-misc/i855crt/files/i855crt-0.4-makefile.patch
deleted file mode 100644
index e7deffb4d30a..000000000000
--- a/x11-misc/i855crt/files/i855crt-0.4-makefile.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -1,11 +1,6 @@
--i855crt: i855crt.o vmodes.o
-- gcc $(LDFLAGS) -o i855crt i855crt.o vmodes.o -L /usr/X11R6/lib -lXext -lXv
-+LDLIBS = -lXv -lX11
-
--i855crt.o: i855crt.c i855crt.h vmodes.h hw.h
-- gcc $(CFLAGS) -c i855crt.c
--
--vmodes.o: vmodes.c vmodes.h
-- gcc $(CFLAGS) -c vmodes.c
-+i855crt: vmodes.o
-
- clean:
- rm *.o -f
diff --git a/x11-misc/i855crt/files/i855crt-i915support.diff b/x11-misc/i855crt/files/i855crt-i915support.diff
deleted file mode 100644
index 5aea3a7dd96c..000000000000
--- a/x11-misc/i855crt/files/i855crt-i915support.diff
+++ /dev/null
@@ -1,70 +0,0 @@
---- a/dumpreg.c
-+++ b/dumpreg.c
-@@ -36,10 +36,11 @@
- (p = strstr(*buff_ptr, I810_DC100STR_1)) != NULL ||
- (p = strstr(*buff_ptr, I810_DC100STR_2)) != NULL ||
- (p = strstr(*buff_ptr, I810_IGSTR)) != NULL ||
-- (p = strstr(*buff_ptr, I810_CFCSTR)) != NULL;
-+ (p = strstr(*buff_ptr, I810_CFCSTR)) != NULL ||
- (p = strstr(*buff_ptr, I830STR)) != NULL ||
- (p = strstr(*buff_ptr, I845STR)) != NULL ||
-- (p = strstr(*buff_ptr, I865STR)) != NULL ;
-+ (p = strstr(*buff_ptr, I865STR)) != NULL ||
-+ (p = strstr(*buff_ptr, I915STR)) != NULL ;
-
- if(i)
- {
-@@ -89,7 +90,7 @@
- chip = i810_chip(&buff, &len, pci_f);
- if (chip == NULL)
- {
-- fprintf(stderr, "No know videocard has been found.\n");
-+ fprintf(stderr, "No known videocard has been found.\n");
- exit(1);
- }
- pclose(pci_f);
---- a/i855crt.c
-+++ b/i855crt.c
-@@ -254,14 +254,15 @@
- (p = strstr(*buff_ptr, I810_DC100STR_1)) != NULL ||
- (p = strstr(*buff_ptr, I810_DC100STR_2)) != NULL ||
- (p = strstr(*buff_ptr, I810_IGSTR)) != NULL ||
-- (p = strstr(*buff_ptr, I810_CFCSTR)) != NULL;
-+ (p = strstr(*buff_ptr, I810_CFCSTR)) != NULL ||
- (p = strstr(*buff_ptr, I830STR)) != NULL ||
- (p = strstr(*buff_ptr, I845STR)) != NULL ||
-- (p = strstr(*buff_ptr, I865STR)) != NULL ;
-+ (p = strstr(*buff_ptr, I865STR)) != NULL ||
-+ (p = strstr(*buff_ptr, I915STR)) != NULL ;
-
- if(i)
- {
-- fprintf(stderr,"This driver is untested with your videocard !\n");
-+ fprintf(stderr,"This driver is untested with your video card !\n");
- return p;
- }
-
-@@ -493,7 +494,7 @@
- chip = i810_chip(&buff, &len, pci_f);
- if (chip == NULL)
- {
-- fprintf(stderr, "No know videocard has been found.\n");
-+ fprintf(stderr, "No known videocard has been found.\n");
- exit(1);
- }
- pclose(pci_f);
---- a/i855crt.h
-+++ b/i855crt.h
-@@ -1,3 +1,4 @@
-+
- /*
- * This is part of the source for i855crt driver
- * copyright(c) Merello Andrea 2004
-@@ -45,6 +46,7 @@
- #define I845STR "8086:2562"
- #define I855STR "8086:3582"
- #define I865STR "8086:2572"
-+#define I915STR "8086:2592"
- #define MEMSTR "Memory at"
- #define NONPRSTR "32-bit, non-prefetchable"
-
diff --git a/x11-misc/i855crt/i855crt-0.4-r1.ebuild b/x11-misc/i855crt/i855crt-0.4-r1.ebuild
deleted file mode 100644
index 25df8327c91c..000000000000
--- a/x11-misc/i855crt/i855crt-0.4-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Intel Montara 855GM CRT out auxiliary driver"
-HOMEPAGE="http://i855crt.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXv"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-i915support.diff
- "${FILESDIR}"/${PN}-0.4-makefile.patch
-)
-
-src_prepare() {
- default
-
- # upstream ships it with the binary, we want to make sure we compile it
- emake clean
-}
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin i855crt
- insinto /etc
- doins i855crt.conf
- einstalldocs
-}
diff --git a/x11-misc/i855crt/metadata.xml b/x11-misc/i855crt/metadata.xml
deleted file mode 100644
index 5e2d40ca2392..000000000000
--- a/x11-misc/i855crt/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
- <longdescription lang="en">
-i855crt is a tool to send the output of a i855-based graphic card to the
-external VGA, primarily used for presentations.
-</longdescription>
- <upstream>
- <remote-id type="sourceforge">i855crt</remote-id>
- </upstream>
-</pkgmetadata>