blob: 09191b944030cb4c45a6bdbd9df4121d3fa3f6f9 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Travis Tilley <lordviram@nesit.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild,v 1.3 2002/07/09 09:45:46 phoenix Exp $
S=${WORKDIR}/${P}
DESCRIPTION="the tftp server included in netkit"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-tftp-0.17.tar.gz"
HOMEPAGE="http://"
KEYWORDS="x86"
LICENSE="bsd"
SLOT="0"
DEPEND="virtual/glibc"
src_compile() {
cd ${S}
./configure --prefix=/usr --installroot=${D} || die
emake
}
src_install() {
mkdir -p ${D}/usr/bin ${D}/usr/sbin ${D}/usr/share/man/man1 ${D}/usr/share//man/man8
cd ${S}
make install
}
|