blob: 6e23f2cb51d45397c7e22f9e19ebe07806de297f (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools toolchain-funcs
DESCRIPTION="Tool to copy kernel(s) into the volume header on SGI MIPS-based workstations"
HOMEPAGE="http://packages.debian.org/unstable/utils/dvhtool"
SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_1.0.1.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${S}.orig"
PATCHES=(
"${FILESDIR}/${P}-debian.diff"
"${FILESDIR}/${P}-debian-warn_type_guess.diff"
"${FILESDIR}/${P}-debian-xopen_source.diff"
"${FILESDIR}/${P}-add-raid-lvm-parttypes.patch"
)
src_prepare() {
default
# Fix automake warning
mv configure.{in,ac} || die
eapply_user
eautoreconf
}
src_configure() {
CC="$(tc-getCC)" LD="$(tc-getLD)" \
econf
}
src_compile() {
CC="$(tc-getCC)" LD="$(tc-getLD)" \
emake
}
|