blob: b350ab3d25d3bddae713a9454409f3e526bbb53f (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/minit/minit-0.9.1.ebuild,v 1.2 2004/03/17 07:26:59 seemant Exp $
inherit eutils
DESCRIPTION="a small yet feature-complete init"
HOMEPAGE="http://www.fefe.de/minit/"
SRC_URI="http://www.fefe.de/minit/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="dev-libs/dietlibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-destdir.patch
}
src_compile() {
emake || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc CHANGES README TODO
}
|