blob: f6aa72c1f5ab454fd9002f08ba2544be6cfd3481 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mindi/mindi-0.85.ebuild,v 1.7 2003/12/09 19:43:43 mr_bones_ Exp $
DESCRIPTION="Mindi builds boot/root disk images using your existing kernel, modules, tools and libraries"
HOMEPAGE="http://www.microwerks.net/~hugo/mindi/"
SRC_URI="http://www.microwerks.net/~hugo/download/stable/final/${P}.tgz"
RESTRICT="nouserpriv"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
RESTRICT="nouserpriv"
DEPEND=">=app-arch/bzip2-1.0.1
>=app-cdr/cdrtools-1.11
>=sys-libs/ncurses-5
>=sys-devel/binutils-2
>=sys-boot/syslinux-1.7
>=sys-boot/lilo-22
>=sys-fs/dosfstools-2.8
>=sys-apps/mindi-kernel-1*"
src_unpack() {
for i in ${FEATURES} ; do
if [ "${i}" = "userpriv" ] ; then
echo
ewarn "mindi cannot be installed if userpriv"
ewarn "is set within FEATURES."
ewarn "Please emerge mindi as follows:"
echo
ewarn "# FEATURES=\"-userpriv\" emerge mindi"
die "userpriv failure"
fi
done
unpack ${A}
}
src_install() {
dodir /usr/share/mindi
dodir /usr/sbin
cp * --parents -rdf ${D}/usr/share/mindi/
dosym /usr/share/mindi/mindi /usr/sbin/
}
|