blob: 2ccb03dedc72e3c7f24b120ce4189e28ba7cc92b (
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
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/yard/yard-2.2.ebuild,v 1.9 2004/07/15 02:48:57 agriffis Exp $
DESCRIPTION="Yard is a suite of Perl scripts for creating rescue disks (also
called bootdisks) for Linux."
SRC_URI="http://www.linuxlots.com/~fawcett/yard/${P}.tar.gz
http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/${P}-extra.tar.bz2
http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/diet-utils.tar.bz2"
HOMEPAGE="http://www.linuxlots.com/~fawcett/yard/"
SLOT="0"
LICENSE="GPL-2 Artistic"
KEYWORDS="x86 amd64 -ppc"
IUSE=""
DEPEND="dev-lang/perl"
RDEPEND=""
src_unpack() {
unpack ${P}-extra.tar.bz2
mv ${S} ${S}-extra
unpack ${P}.tar.gz
cd ${S}
patch -p0 -l < ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
./configure || die
make || die
}
src_install() {
make install DESTDIR=${D} || die
make customize DESTDIR=${D} || die
dodoc 0_* README VERSION
dohtml doc/*.html
cd ${S}-extra
insinto /etc/yard
doins etc/Bootdisk* etc/Config.pl
insinto /etc/yard/Replacements/etc
doins etc/Replacements/etc/[a-z]*
chmod +x ${D}/etc/yard/Replacements/etc/rc
insinto /etc/yard/Replacements/etc/pam.d
doins etc/Replacements/pam.d/other
insinto /etc/yard/Replacements/root
doins etc/Replacements/root/profile
# modified scripts
exeinto /usr/sbin
doexe sbin/{*_root_fs,mklibs.sh,write_rescue_disk,reduce_libs_root_fs}
# devices
dodir /etc/yard/Replacements/dev
cd ${D}/etc/yard/Replacements/dev
for i in hda hdb hdc hdd hde hdf hdg hdh scd
do
MAKEDEV $i
done
# diet-utils
dodir /etc/yard/Replacements/bin
cd ${D}/etc/yard/Replacements/bin
tar xjpf ${DISTDIR}/diet-utils.tar.bz2
}
|