summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-drivers/xf86-video-sunffb')
-rw-r--r--x11-drivers/xf86-video-sunffb/Manifest2
-rw-r--r--x11-drivers/xf86-video-sunffb/files/xf86-video-sunffb-1.2.2-unbreak-when-xaa-is-not-present.patch32
-rw-r--r--x11-drivers/xf86-video-sunffb/metadata.xml8
-rw-r--r--x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.1.ebuild17
-rw-r--r--x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.2-r1.ebuild18
5 files changed, 0 insertions, 77 deletions
diff --git a/x11-drivers/xf86-video-sunffb/Manifest b/x11-drivers/xf86-video-sunffb/Manifest
deleted file mode 100644
index 19336581f624..000000000000
--- a/x11-drivers/xf86-video-sunffb/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST xf86-video-sunffb-1.2.1.tar.bz2 283427 BLAKE2B b5c2d032c2963ece45972bee0b4b8b8e43d3e7f254ff90fa8aefe387c1c688ef27cd6bce1063566936dba55380bd1978517d35e7941154561455079f0ad13bf4 SHA512 4c5c62f752af1d76a9f1b716f3a77190419d76733c4a622f17a9367ba984ee6a644b480780e2be78968e3779444eef995ae1fa0e4f2ba42d5ea886d35e96b38c
-DIST xf86-video-sunffb-1.2.2.tar.bz2 334827 BLAKE2B 0285482e3c50cfcc98189eba351865fd4d06a153c74eee7bfd00a8bd8e59626289db09c90e53e23c5f7eb2845164c7526c6e4d0c104942014ab60a1403447d78 SHA512 a812cfdb43527e97993d1ce8b62324a5ee442c0bbf695d45582f10d7d428606ac9a546c80cd401e41e2f198c94fa84762ec4e545b53b8d1cb074bfb13ab45ff0
diff --git a/x11-drivers/xf86-video-sunffb/files/xf86-video-sunffb-1.2.2-unbreak-when-xaa-is-not-present.patch b/x11-drivers/xf86-video-sunffb/files/xf86-video-sunffb-1.2.2-unbreak-when-xaa-is-not-present.patch
deleted file mode 100644
index 83a7ca2b3e63..000000000000
--- a/x11-drivers/xf86-video-sunffb/files/xf86-video-sunffb-1.2.2-unbreak-when-xaa-is-not-present.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 181b60190c1f81fc9b9b5deb07d536b78f2536ab Mon Sep 17 00:00:00 2001
-From: Matthieu Herrb <matthieu.herrb@laas.fr>
-Date: Mon, 10 Jun 2013 19:51:08 +0000
-Subject: Unbreak when XAA is not present.
-
-Turn accel off if loading XAA fails.
-
-Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
-Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
----
-diff --git a/src/ffb_driver.c b/src/ffb_driver.c
-index af13484..7f17d64 100644
---- a/src/ffb_driver.c
-+++ b/src/ffb_driver.c
-@@ -413,9 +413,12 @@ FFBPreInit(ScrnInfoPtr pScrn, int flags)
- return FALSE;
- }
-
-- if (xf86LoadSubModule(pScrn, "xaa") == NULL) {
-- FFBFreeRec(pScrn);
-- return FALSE;
-+ if (!pFfb->NoAccel) {
-+ if (xf86LoadSubModule(pScrn, "xaa") == NULL) {
-+ xf86DrvMsg(pScrn->scrnIndex, X_INFO,
-+ "Loading XAA failed, acceleration disabled\n");
-+ pFfb->NoAccel = TRUE;
-+ }
- }
-
- if (pFfb->HWCursor && xf86LoadSubModule(pScrn, "ramdac") == NULL) {
---
-cgit v0.9.0.2-2-gbebe
diff --git a/x11-drivers/xf86-video-sunffb/metadata.xml b/x11-drivers/xf86-video-sunffb/metadata.xml
deleted file mode 100644
index e943b72b8a48..000000000000
--- a/x11-drivers/xf86-video-sunffb/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>x11@gentoo.org</email>
- <name>X11</name>
-</maintainer>
-</pkgmetadata>
diff --git a/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.1.ebuild b/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.1.ebuild
deleted file mode 100644
index 458090b9bc89..000000000000
--- a/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit x-modular
-
-DESCRIPTION="SUNFFB video driver"
-
-KEYWORDS="-* sparc"
-IUSE=""
-
-RDEPEND=">=x11-base/xorg-server-1.0.99"
-DEPEND="${RDEPEND}
- x11-proto/fontsproto
- x11-proto/randrproto
- x11-proto/renderproto
- x11-proto/xextproto
- x11-proto/xproto"
diff --git a/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.2-r1.ebuild b/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.2-r1.ebuild
deleted file mode 100644
index b930ee8342c2..000000000000
--- a/x11-drivers/xf86-video-sunffb/xf86-video-sunffb-1.2.2-r1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit xorg-2
-
-DESCRIPTION="SUNFFB video driver"
-
-KEYWORDS="-* sparc"
-IUSE=""
-
-RDEPEND=">=x11-base/xorg-server-1.0.99"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-unbreak-when-xaa-is-not-present.patch
-)