blob: 78b9856196646749a9cacdc1a315302a597deb82 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/tftp-hpa/tftp-hpa-0.16.ebuild,v 1.11 2003/02/13 05:31:48 vapier Exp $
DESCRIPTION="HPA's TFTP Daemon is a port of the OpenBSD TFTP server"
SRC_URI="ftp://ftp.kernel.org/pub/software/network/tftp/${P}.tar.bz2"
HOMEPAGE="http://www.kernel.org/pub/software/network/tftp/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 sparc "
DEPEND="virtual/glibc"
src_compile() {
econf
make || die
}
src_install() {
dodir /usr/{bin,sbin} /usr/share/man/man{1,8}
make INSTALLROOT=${D} install || die
dodoc README
}
|