blob: 56f70c25ac02e010e53f4ee8236eb4633f8a2223 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tftp-hpa/tftp-hpa-0.34-r1.ebuild,v 1.8 2004/06/25 00:14:52 agriffis Exp $
DESCRIPTION="port of the OpenBSD TFTP server"
SRC_URI="mirror://kernel/software/network/tftp/${P}.tar.bz2"
HOMEPAGE="http://www.kernel.org/pub/software/network/tftp/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="alpha amd64 ~hppa ~ia64 ~mips ~ppc sparc x86 s390"
DEPEND="virtual/glibc
!virtual/tftp"
PROVIDE="virtual/tftp"
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
}
|