diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-04-22 20:05:19 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-04-22 20:05:19 +0000 |
commit | 3befd7591ca5de7d0d8df1e3c5effd5030f68f9f (patch) | |
tree | 79f83cf47b369d5cb9c72dcbb983aa2024f3acf9 /net-misc/netkit-tftp | |
parent | try to resolve conduct issue (diff) | |
download | historical-3befd7591ca5de7d0d8df1e3c5effd5030f68f9f.tar.gz historical-3befd7591ca5de7d0d8df1e3c5effd5030f68f9f.tar.bz2 historical-3befd7591ca5de7d0d8df1e3c5effd5030f68f9f.zip |
Fixes #1997
Diffstat (limited to 'net-misc/netkit-tftp')
-rw-r--r-- | net-misc/netkit-tftp/Changelog | 9 | ||||
-rw-r--r-- | net-misc/netkit-tftp/files/digest-netkit-tftp-0.17-r1 | 1 | ||||
-rw-r--r-- | net-misc/netkit-tftp/netkit-tftp-0.17-r1.ebuild | 25 |
3 files changed, 34 insertions, 1 deletions
diff --git a/net-misc/netkit-tftp/Changelog b/net-misc/netkit-tftp/Changelog index c46c0726fc1c..89e56fcf2b69 100644 --- a/net-misc/netkit-tftp/Changelog +++ b/net-misc/netkit-tftp/Changelog @@ -1,7 +1,14 @@ # ChangeLog for net-misc/netkit-tftp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-tftp/Changelog,v 1.3 2002/02/21 22:54:32 m0rpheus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-tftp/Changelog,v 1.4 2002/04/22 20:05:17 rphillips Exp $ +*netkit-tftp-0.17-r1 (22 Apr 2002) + + 22 Apr 2002; Ryan Phillips <rphillips@gentoo.org> netkit-tftp-0.17-r1.ebuild + + Patched netkit-tftp-0.17 to actually install in.tftpd and man pages. + Fixes (#1997) + *netkit-tftp-0.17 (18 Feb 2002) 18 Feb 2002; F.Meyndert <m0rpheus@gentoo.org> netkit-tftp-0.17.ebuild, diff --git a/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17-r1 b/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17-r1 new file mode 100644 index 000000000000..ccb1af2d7d24 --- /dev/null +++ b/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17-r1 @@ -0,0 +1 @@ +MD5 b7262c798e2ff50e29c2ff50dfd8d6a8 netkit-tftp-0.17.tar.gz 23620 diff --git a/net-misc/netkit-tftp/netkit-tftp-0.17-r1.ebuild b/net-misc/netkit-tftp/netkit-tftp-0.17-r1.ebuild new file mode 100644 index 000000000000..919198203034 --- /dev/null +++ b/net-misc/netkit-tftp/netkit-tftp-0.17-r1.ebuild @@ -0,0 +1,25 @@ +# 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-r1.ebuild,v 1.1 2002/04/22 20:05:19 rphillips 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://" + +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/man/man1 ${D}/usr/man/man8 + cd ${S} + make install +} + + |