blob: 7d5836dcf4d8c3fe841222a6c5b3daa4dc716815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="Flash the Xbox boot chip"
HOMEPAGE="https://sourceforge.net/projects/xbox-linux/"
SRC_URI="http://xbox-linux.org/down/raincoat-0.5+.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${PN}
src_compile() {
emake || die
}
src_install() {
dodir /etc
insinto /etc
doins raincoat.conf
dobin raincoat || die
dodoc README
}
|