blob: e7a271cbcfd881f5ef76590c0094530fbe9d42a4 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tinylogin/tinylogin-1.2.ebuild,v 1.5 2004/07/01 21:41:24 eradicator Exp $
DESCRIPTION="worlds smallest login/passwd/getty/etc"
HOMEPAGE="http://tinylogin.busybox.net/"
SRC_URI="http://tinylogin.busybox.net/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND="virtual/libc"
#RDEPEND=""
src_compile() {
local myconf
use static && myconf="${myconf} DOSTATIC=true"
emake ${myconf} || die
}
src_install() {
into /
dobin tinylogin
into /usr
dodoc Changelog README TODO
cd docs
doman *.1 *.8
dodoc *.txt
dohtml -r tinylogin.busybox.net
docinto pod
dodoc *.pod
}
|