diff options
| author | root <root@alpha.trunkmasters.com> | 2026-09-18 21:54:51 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-09-18 21:54:51 -0500 |
| commit | 67d13c501bceeb7226193eca1bd2e5ed08e7b024 (patch) | |
| tree | 1e3ee1f518dbb53801ce1b48508436abb7b152e8 /sys-firmware/vgabios | |
| parent | 9720a11af1e64187117d3c485b8df96672a294fe (diff) | |
| download | baldeagleos-repo-67d13c501bceeb7226193eca1bd2e5ed08e7b024.tar.gz baldeagleos-repo-67d13c501bceeb7226193eca1bd2e5ed08e7b024.tar.xz baldeagleos-repo-67d13c501bceeb7226193eca1bd2e5ed08e7b024.zip | |
Adding metadata
Diffstat (limited to 'sys-firmware/vgabios')
| -rw-r--r-- | sys-firmware/vgabios/vgabios-0.7a-r1.ebuild | 67 | ||||
| -rw-r--r-- | sys-firmware/vgabios/vgabios-0.7a.ebuild | 69 |
2 files changed, 0 insertions, 136 deletions
diff --git a/sys-firmware/vgabios/vgabios-0.7a-r1.ebuild b/sys-firmware/vgabios/vgabios-0.7a-r1.ebuild deleted file mode 100644 index 84a7f9b665bc..000000000000 --- a/sys-firmware/vgabios/vgabios-0.7a-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Can't really call them backports when they're fixes that upstream -# won't carry -FIXES=1 - -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 ~arm ~arm64 ~ppc ~ppc64 x86" -IUSE="binary debug" -BDEPEND="!binary? ( sys-devel/dev86 )" - -src_prepare() { - if [[ -n ${FIXES} ]] ; then - eapply patches/*.patch - fi - - default -} - -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 -} diff --git a/sys-firmware/vgabios/vgabios-0.7a.ebuild b/sys-firmware/vgabios/vgabios-0.7a.ebuild deleted file mode 100644 index 85d6d4c72bce..000000000000 --- a/sys-firmware/vgabios/vgabios-0.7a.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Can't really call them backports when they're fixes that upstream -# won't carry -FIXES=1 - -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" - -BDEPEND="amd64? ( sys-devel/dev86 ) - x86? ( sys-devel/dev86 )" - -src_prepare() { - if [[ -n ${FIXES} ]] ; then - eapply patches/*.patch - fi - - default -} - -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 -} |
