sys-firmware/vgabios: remove unnecessary package

Remove unnecessary package sys-firmware/vgabios.
This commit is contained in:
Dongsu Park 2020-09-18 11:43:03 +02:00
parent 292e92707f
commit c8219909ce
5 changed files with 0 additions and 234 deletions

View File

@ -1,5 +0,0 @@
DIST vgabios-0.6c-bins.tar.xz 17876 BLAKE2B db343ed998701a061a77d49a2a931493bf7ed82f68cd7e83e22465ab8ef3a0f01e176f84a39e458e4e4a2f290c7bc4bd7ae68a246edd93dc3f0e3063e73afb90 SHA512 7c3790d6e9feb12697558d690dd23a6ca35a9037987f516bcd84f750c177cb26ddfdbdacb68730e01f6d9ba118c5d092ad00c0cfa9f8c40b2c0218641dc8a53e
DIST vgabios-0.6c-fixes-2.tar.bz2 4174 BLAKE2B d3bb95b57939be85e4f24411f1590c6d75b7c701c3cd848f5b07d875a45ec1159a624ab37158f393b384c6d4db6db38b36e0a4c0b1300cc6abafcef4c03549b1 SHA512 bf85dfa52c078517c77b219361b0c569ad79ef9a8234dfdb14f39902198f0e7bfab99f826e084bda5c8321e69591deeda8242e4f52134bac654046db7fe20584
DIST vgabios-0.6c.tgz 1470496 BLAKE2B 1e2416aa09bf572551f12b963170999de88b3842d834a0b27332c5667975f807ac19d0fd602538bea9421fb58911fee824f1a7f3c49ecae34811fd8679e53ba7 SHA512 b0392358abf691f0a3b8292cf14dc56897d5cbf004336af4b4a3378002c4b47eb28c9da182cddf2c89d162a6e166b7a5c07cb098303a9f9918ea484922d3770e
DIST vgabios-0.7a-fixes-1.tar.bz2 2602 BLAKE2B 68fbd29e6c660dc69ea110e00ff75fc9d14f10bd11b9be89bd373281852a3133c73ee0f2a7ecdf026b29979e4c20bcdbad0baf9f80d013ffeb24dda892725778 SHA512 30992efac011d4b99301960df08cdc69d9503aa6b61feed01fca2c5a910460269d9500650cb394a0737318e977a282c5e0ab613a8b2bc28b9f0c6528a9a77d73
DIST vgabios-0.7a.tgz 1506655 BLAKE2B fb9b99ab385423b4ef103a56de140591556d2f49fffebfdd508a462551b1a9def9d8dc50c947a88ef6d47c43ff62dbe3d97fef969d985c49b9e78671eaefd34e SHA512 35d789b1b39f8f05b757b6c3379a1b2c33dc27b244720471530325f3e215b5f4fa97cfbfc131f813013f4640fe85be912e7b4cb924fa87ed35e68b6966424874

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cardoe@gentoo.org</email>
<name>Doug Goldstein</name>
</maintainer>
<maintainer type="project">
<email>qemu@gentoo.org</email>
<name>Gentoo QEMU Project</name>
</maintainer>
<use>
<flag name="binary">Use official upstream pre-built binaries (only default and cirrus images)</flag>
</use>
</pkgmetadata>

View File

@ -1,71 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
# Can't really call them backports when they're fixes that upstream
# won't carry
FIXES=2
inherit eutils
DESCRIPTION="VGA BIOS implementation"
HOMEPAGE="http://www.nongnu.org/vgabios/"
SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tgz
https://dev.gentoo.org/~cardoe/distfiles/${P}-bins.tar.xz
https://dev.gentoo.org/~cardoe/distfiles/${P}-fixes-${FIXES}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-fbsd"
IUSE="debug"
DEPEND="amd64? ( sys-devel/dev86 )
x86? ( sys-devel/dev86 )"
RDEPEND=""
src_prepare() {
[[ -n ${FIXES} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
}
src_compile() {
if use amd64 || use x86 ; then
emake clean # Necessary to clean up the pre-built pieces
emake biossums
emake
fi
}
src_install() {
insinto /usr/share/vgabios
if use amd64 || use x86 ; then
# Stock VGABIOS
newins VGABIOS-lgpl-latest.bin vgabios.bin
use debug && newins VGABIOS-lgpl-latest.debug.bin vgabios.debug.bin
# Cirrus
newins VGABIOS-lgpl-latest.cirrus.bin vgabios-cirrus.bin
use debug && newins VGABIOS-lgpl-latest.cirrus.debug.bin \
vgabios-cirrus.debug.bin
# QXL
newins VGABIOS-lgpl-latest.qxl.bin vgabios-qxl.bin
use debug && newins VGABIOS-lgpl-latest.qxl.debug.bin \
vgabios-qxl.debug.bin
# Standard VGA
newins VGABIOS-lgpl-latest.stdvga.bin vgabios-stdvga.bin
use debug && newins VGABIOS-lgpl-latest.stdvga.debug.bin \
vgabios-stdvga.debug.bin
# VMWare
newins VGABIOS-lgpl-latest.vmware.bin vgabios-vmware.bin
use debug && newins VGABIOS-lgpl-latest.vmware.debug.bin \
vgabios-vmware.debug.bin
else
doins bins/*
fi
}

View File

@ -1,71 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
# Can't really call them backports when they're fixes that upstream
# won't carry
FIXES=1
inherit eutils
DESCRIPTION="VGA BIOS implementation"
HOMEPAGE="http://www.nongnu.org/vgabios/"
SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tgz
https://dev.gentoo.org/~cardoe/distfiles/${P}-fixes-${FIXES}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
IUSE="binary debug"
DEPEND="!binary? ( sys-devel/dev86 )"
RDEPEND=""
src_prepare() {
[[ -n ${FIXES} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
epatch_user
}
src_compile() {
if ! use binary ; then
emake clean # Necessary to clean up the pre-built pieces
emake biossums
emake
fi
}
src_install() {
insinto /usr/share/vgabios
# Stock VGABIOS
newins VGABIOS-lgpl-latest.bin vgabios.bin
use debug && newins VGABIOS-lgpl-latest.debug.bin vgabios.debug.bin
# Cirrus
newins VGABIOS-lgpl-latest.cirrus.bin vgabios-cirrus.bin
use debug && newins VGABIOS-lgpl-latest.cirrus.debug.bin \
vgabios-cirrus.debug.bin
if ! use binary ; then
# QXL
newins VGABIOS-lgpl-latest.qxl.bin vgabios-qxl.bin
use debug && newins VGABIOS-lgpl-latest.qxl.debug.bin \
vgabios-qxl.debug.bin
# Standard VGA
newins VGABIOS-lgpl-latest.stdvga.bin vgabios-stdvga.bin
use debug && newins VGABIOS-lgpl-latest.stdvga.debug.bin \
vgabios-stdvga.debug.bin
# VMWare
newins VGABIOS-lgpl-latest.vmware.bin vgabios-vmware.bin
use debug && newins VGABIOS-lgpl-latest.vmware.debug.bin \
vgabios-vmware.debug.bin
else
ewarn "USE=binary only includes default & cirrus bios builds"
fi
}

View File

@ -1,72 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
# Can't really call them backports when they're fixes that upstream
# won't carry
FIXES=1
inherit eutils
DESCRIPTION="VGA BIOS implementation"
HOMEPAGE="http://www.nongnu.org/vgabios/"
SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tgz
https://dev.gentoo.org/~cardoe/distfiles/${P}-fixes-${FIXES}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="debug"
DEPEND="amd64? ( sys-devel/dev86 )
x86? ( sys-devel/dev86 )"
RDEPEND=""
src_prepare() {
[[ -n ${FIXES} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
epatch_user
}
src_compile() {
if use amd64 || use x86 ; then
emake clean # Necessary to clean up the pre-built pieces
emake biossums
emake
fi
}
src_install() {
insinto /usr/share/vgabios
if use amd64 || use x86 ; then
# Stock VGABIOS
newins VGABIOS-lgpl-latest.bin vgabios.bin
use debug && newins VGABIOS-lgpl-latest.debug.bin vgabios.debug.bin
# Cirrus
newins VGABIOS-lgpl-latest.cirrus.bin vgabios-cirrus.bin
use debug && newins VGABIOS-lgpl-latest.cirrus.debug.bin \
vgabios-cirrus.debug.bin
# QXL
newins VGABIOS-lgpl-latest.qxl.bin vgabios-qxl.bin
use debug && newins VGABIOS-lgpl-latest.qxl.debug.bin \
vgabios-qxl.debug.bin
# Standard VGA
newins VGABIOS-lgpl-latest.stdvga.bin vgabios-stdvga.bin
use debug && newins VGABIOS-lgpl-latest.stdvga.debug.bin \
vgabios-stdvga.debug.bin
# VMWare
newins VGABIOS-lgpl-latest.vmware.bin vgabios-vmware.bin
use debug && newins VGABIOS-lgpl-latest.vmware.debug.bin \
vgabios-vmware.debug.bin
else
doins bins/*
fi
}