blob: 28ba511b1f9f71f25a621a2fecee57dee257b805 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
S=${WORKDIR}/${P}.orig
DESCRIPTION="SPARC/UltraSPARC Improved Loader, a boot loader for sparc"
SRC_URI=" http://http.us.debian.org/debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz"
HOMEPAGE="http://www.debian.org"
KEYWORDS="sparc sparc64 -x86 -ppc"
SLOT="0"
LICENSE="GPL-2"
DEPEND="sys-kernel/linux-headers"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cat ${FILESDIR}/sparc-utils_1.9-2.diff | patch -p0 -l || die
}
src_compile() {
CFLAGS="-O3"
cd ${S}
emake -C elftoaout-2.3 CFLAGS="$CFLAGS" || die
emake -C src piggyback piggyback64 CFLAGS="$CFLAGS" || die
emake -C prtconf-1.3 all || die
# TODO: Fix compile issue
# Not compiling at this time, commented out
#emake -C sparc32-1.1
emake -C audioctl-1.3 || die
}
src_install() {
mkdir -p ${D}/usr/bin ${D}/usr/sbin ${D}/etc/init.d ${D}/etc/default
dodir /usr/bin
install -s elftoaout-2.3/elftoaout ${D}/usr/bin
install -s src/piggyback src/piggyback64 ${D}/usr/bin
#install -s sparc32-1.1/sparc32 ${D}/usr/bin
dodir /usr/sbin
install -s prtconf-1.3/prtconf ${D}/usr/sbin/prtconf
install -s prtconf-1.3/eeprom ${D}/usr/sbin/eeprom
#ln -sf sparc32 ${D}/usr/bin/sparc64
install -s audioctl-1.3/audioctl ${D}/usr/bin
# install /etc/init.d script & /etc/default scripts
install -d -m 755 ${D}/etc ${D}/etc/init.d ${D}/etc/default
#install -m 755 debian/audioctl ${D}/etc/init.d
install -m 755 debian/audioctl.def ${D}/etc/default/audioctl
# Todo: Somehow set this automatically
echo "=============================================================="
echo "WARNING - You should make sure /dev/openprom exists. If you're"
echo "not using devfs and /dev/openprom does not exist, then issue the"
echo "command:"
echo "cd /dev; mknod openprom c 10 139"
echo "=============================================================="
}
|