From: Doug Goldstein Date: Thu, 25 Aug 2011 22:22:06 +0000 (+0000) Subject: Add initial version of seabios X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=122f648d7634fe46e65cde83142f34bdf48c1db2;p=gentoo.git Add initial version of seabios Package-Manager: portage-2.1.10.11/cvs/Linux x86_64 --- diff --git a/sys-apps/seabios/ChangeLog b/sys-apps/seabios/ChangeLog new file mode 100644 index 000000000000..fdc1b15ed325 --- /dev/null +++ b/sys-apps/seabios/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sys-apps/seabios +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/seabios/ChangeLog,v 1.1 2011/08/25 22:22:06 cardoe Exp $ + +*seabios-0.6.3_pre20010817 (25 Aug 2011) + + 25 Aug 2011; Doug Goldstein + +seabios-0.6.3_pre20010817.ebuild, +metadata.xml: + Add initial version of seabios + diff --git a/sys-apps/seabios/Manifest b/sys-apps/seabios/Manifest new file mode 100644 index 000000000000..0199baabc47c --- /dev/null +++ b/sys-apps/seabios/Manifest @@ -0,0 +1,3 @@ +EBUILD seabios-0.6.3_pre20010817.ebuild 1251 RMD160 2adb22ae225eaa30aed8e082a26802ab4839ac59 SHA1 2902fa6706383283fea871b2157e5a5e38dd8e5c SHA256 f8d4efd495fa131580ed24ea490d9e26649f660b815d6bc4735e3070d1628ccd +MISC ChangeLog 383 RMD160 a141b1486124b7c76c843e0f2de7b8433da7efae SHA1 9d86d1d7b87a8471b6f32f234eb15a8c30eeb29b SHA256 ca0cf788858760b7c7b2c1072ec8454e1288c0f5ba9d629be52488f8a937f454 +MISC metadata.xml 263 RMD160 dfb6b4419fbd63abc11c8a94537cfc2ec9f2b443 SHA1 a14bd41b62c7b296d63ff53cb3f31b395ea56975 SHA256 15b7a062b1daa951b969cfac555896a705973335aeab1b9567c0a413501024d6 diff --git a/sys-apps/seabios/metadata.xml b/sys-apps/seabios/metadata.xml new file mode 100644 index 000000000000..e2d6ffdc83e2 --- /dev/null +++ b/sys-apps/seabios/metadata.xml @@ -0,0 +1,10 @@ + + + + virtualization + + cardoe@gentoo.org + Doug Goldstein + + + diff --git a/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild b/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild new file mode 100644 index 000000000000..da4fedad75cc --- /dev/null +++ b/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild,v 1.1 2011/08/25 22:22:06 cardoe Exp $ + +EAPI=4 + +#BACKPORTS=1 +EGIT_COMMIT="8e301472e324b6d6496d8b4ffc66863e99d7a505" + +if [[ ${PV} = *9999* || ! -z "${EGIT_COMMIT}" ]]; then + EGIT_REPO_URI="git://git.seabios.org/seabios.git" + GIT_ECLASS="git-2" + SRC_URI="" +else + SRC_URI="http://www.linuxtogo.org/~kevin/SeaBIOS/${P}.tar.gz + ${BACKPORTS:+http://dev.gentoo.org/~cardoe/distfiles/${P}-bp-${BACKPORTS}.tar.bz2}" +fi + +inherit ${GIT_ECLASS} + +if [[ ${PV} = *9999* ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" +fi + + +DESCRIPTION="Open Source implementation of a 16-bit x86 BIOS" +HOMEPAGE="http://www.seabios.org" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + if [[ -z "${EGIT_COMMIT}" ]]; then + sed -e "s/VERSION=.*/VERSION=${PV}/" \ + -i ${S}/Makefile + else + sed -e "s/VERSION=.*/VERSION=${PV}_pre${EGIT_COMMIT}/" \ + -i ${S}/Makefile + fi +} + +src_configure() { + : +} + +src_compile() { + emake out/bios.bin +# emake out/vgabios.bin +} + +src_install() { + insinto /usr/share/qemu + doins out/bios.bin +# doins out/vgabios.bin +}