blob: 906edb1d9c233f52df1567012814ada033a2ab6b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="A program that creates emergency boot disks/CDs using your kernel, tools and modules."
HOMEPAGE="http://www.mondorescue.org"
SRC_URI="ftp://ftp.mondorescue.org/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -*"
IUSE=""
DEPEND="virtual/libc"
RDEPEND=">=app-arch/bzip2-0.9
sys-libs/ncurses
sys-devel/binutils
sys-fs/dosfstools
sys-apps/gawk"
src_install() {
export PREFIX="${D}/usr"
export CONFDIR="${D}/etc"
export DONT_RELINK=1
export RPMBUILDMINDI="true"
"${WORKDIR}"/"${P}"/install.sh
}
|