summaryrefslogtreecommitdiff
blob: f874bfb37a97e463d1ee416bbbacb271dfe1cea2 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/dvhtool/dvhtool-1.0.1.ebuild,v 1.4 2004/06/24 22:34:06 agriffis Exp $

DESCRIPTION="Dvhtool is the tool responsible for writing MIPS kernel(s) into the SGI volume header"
HOMEPAGE="http://packages.debian.org/unstable/utils/dvhtool.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/d/dvhtool/dvhtool_1.0.1.orig.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 mips"

DEPEND="virtual/glibc"
PROVIDE="virtual/bootloader"

src_unpack() {
	unpack ${A}
	cd ${S}.orig
	patch -p1 < ${FILESDIR}/dvhtool-1.0.1-2.diff || die
}
src_compile() {
	cd ${S}.orig
	econf || die "econf failed"
	emake || die "Failed to compile"
}

src_install() {
	cd ${S}.orig
	einstall

}