diff options
author | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-02-18 19:04:54 +0000 |
---|---|---|
committer | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-02-18 19:04:54 +0000 |
commit | 9c5f822c50d50512e9eb517c2016ff3c8c973f4e (patch) | |
tree | 4b47b6c6620c24c7e5693f1391afd6ea9372fd3d /net-misc/netkit-tftp | |
parent | cook 2.18 (diff) | |
download | historical-9c5f822c50d50512e9eb517c2016ff3c8c973f4e.tar.gz historical-9c5f822c50d50512e9eb517c2016ff3c8c973f4e.tar.bz2 historical-9c5f822c50d50512e9eb517c2016ff3c8c973f4e.zip |
added new ebuild for netkit-tftp-0.17
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 | 1 | ||||
-rw-r--r-- | net-misc/netkit-tftp/netkit-tftp-0.17.ebuild | 24 |
3 files changed, 34 insertions, 0 deletions
diff --git a/net-misc/netkit-tftp/Changelog b/net-misc/netkit-tftp/Changelog new file mode 100644 index 000000000000..a06781aca8b0 --- /dev/null +++ b/net-misc/netkit-tftp/Changelog @@ -0,0 +1,9 @@ +# ChangeLog for net-misc/netkit-tftp +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL + +*geotrace-0.0.4 (17 Feb 2002) + + 18 Feb 2002; F.Meyndert <m0rpheus@gentoo.org> netkit-tftp-0.17.ebuild, + + New ebuild for netkit-tftp, ftp client and server. + diff --git a/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17 b/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17 new file mode 100644 index 000000000000..d87d072bd6f1 --- /dev/null +++ b/net-misc/netkit-tftp/files/digest-netkit-tftp-0.17 @@ -0,0 +1 @@ +MD5 b7262c798e2ff50e29c2ff50dfd8d6a8 netkit-tftp-0.17.tar.gz 24576 diff --git a/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild b/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild new file mode 100644 index 000000000000..cbed86101682 --- /dev/null +++ b/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild @@ -0,0 +1,24 @@ +# 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> + +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/share/man/man1 ${D}/usr/share//man/man8 + cd ${S} + make install +} + + |