blob: 793a5087beff0f9930ec4fbcc96b5896b89719ab (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-admin/tftp-hpa/tftp-hpa-0.29.ebuild,v 1.1 2002/04/22 00:27:30 rphillips Exp $
S=${WORKDIR}/${P}
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/"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} || die
make || die
}
src_install () {
make INSTALLROOT=${D} install || die
dodoc README* CHANGES INSTALL*
insinto /etc/conf.d
newins ${FILESDIR}/in.tftpd.confd in.tftpd
exeinto /etc/init.d
newexe ${FILESDIR}/in.tftpd.rc6 in.tftpd
}
|