blob: d39e332b452cb504d445a0136597323fea271d05 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
A=${P}.tar.bz2
S=${WORKDIR}/${P}
DESCRIPTION="SPARC/UltraSPARC Improved Loader, a boot loader for sparc"
SRC_URI="http://www.ultralinux.nl/silo/download/${A}"
HOMEPAGE="http://freshmeat.net/projects/silo/index.html"
KEYWORDS="sparc sparc64 -x86 -ppc"
SLOT="0"
LICENSE="GPL-2"
DEPEND="sys-apps/e2fsprogs sys-apps/sparc-utils"
src_compile() {
try make ${MAKEOPTS}
}
src_install() {
try make DESTDIR=${D} install
}
|