2014-04-20 12:41:18 +02:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-04-20 15:16:49 +02:00
|
|
|
# $Header: $
|
2014-04-20 12:41:18 +02:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
2014-04-20 15:16:49 +02:00
|
|
|
inherit unpacker
|
2014-04-20 12:41:18 +02:00
|
|
|
|
2014-04-20 15:16:49 +02:00
|
|
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
|
|
|
|
SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}-4_all.deb"
|
2014-04-20 12:41:18 +02:00
|
|
|
|
|
|
|
DESCRIPTION="Open Source implementation of a 16-bit x86 BIOS"
|
|
|
|
HOMEPAGE="http://www.seabios.org"
|
|
|
|
|
|
|
|
LICENSE="LGPL-3 GPL-3"
|
|
|
|
SLOT="0"
|
2014-04-20 15:16:49 +02:00
|
|
|
IUSE=""
|
2014-04-20 12:41:18 +02:00
|
|
|
|
2014-04-20 15:16:49 +02:00
|
|
|
DEPEND=""
|
2014-04-20 12:41:18 +02:00
|
|
|
RDEPEND=""
|
|
|
|
|
2014-04-20 15:16:49 +02:00
|
|
|
S=${WORKDIR}
|
2014-04-20 12:41:18 +02:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto /usr/share/seabios
|
2014-04-20 15:16:49 +02:00
|
|
|
doins usr/share/seabios/*.bin
|
|
|
|
doins usr/share/seabios/*.aml
|
|
|
|
insinto /usr/share/seabios/optionrom
|
|
|
|
doins usr/share/seabios/optionrom/*.bin
|
2014-04-20 12:41:18 +02:00
|
|
|
}
|