blob: 41d38d5bd5e00f7e76409936be2072a8bec26ced (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/jinit/jinit-0.1.9-r1.ebuild,v 1.11 2002/11/30 01:28:59 vapier Exp $
DESCRIPTION="An alternative to sysvinit which supports the need(8) concept"
SRC_URI="http://homepage.ntlworld.com/john.fremlin/programs/linux/jinit/download/${P}.tar.gz"
HOMEPAGE="http://homepage.ntlworld.com/john.fremlin/programs/linux/jinit/
http://www.atnf.csiro.au/~rgooch/linux/boot-scripts/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64"
DEPEND="virtual/glibc"
RDEPEND=""
src_compile() {
econf
make || die
}
src_install() {
make DESTDIR=${D} install || die
mv ${D}/usr/sbin ${D}
mv ${D}/sbin/init ${D}/sbin/jinit
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
cp -R example-setup ${D}/usr/share/doc/${PF}
#find ${D}/usr/share/doc/${PF}/example-setup -name "Makefile*"
}
|