summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Imhof <tantive@gentoo.org>2003-03-28 22:11:41 +0000
committerMichael Imhof <tantive@gentoo.org>2003-03-28 22:11:41 +0000
commitb745c876e47fcb5356952398193eb03bcf86a077 (patch)
treed961de9523b094ec867e085af7c29b87048903be /app-admin/tftp-hpa
parentelibtoolize fix (diff)
downloadgentoo-2-b745c876e47fcb5356952398193eb03bcf86a077.tar.gz
gentoo-2-b745c876e47fcb5356952398193eb03bcf86a077.tar.bz2
gentoo-2-b745c876e47fcb5356952398193eb03bcf86a077.zip
Version bumped. Should close #18327.
Diffstat (limited to 'app-admin/tftp-hpa')
-rw-r--r--app-admin/tftp-hpa/ChangeLog9
-rw-r--r--app-admin/tftp-hpa/files/digest-tftp-hpa-0.331
-rw-r--r--app-admin/tftp-hpa/tftp-hpa-0.33.ebuild28
3 files changed, 37 insertions, 1 deletions
diff --git a/app-admin/tftp-hpa/ChangeLog b/app-admin/tftp-hpa/ChangeLog
index b9d42aa6ca9d..76cc6912471e 100644
--- a/app-admin/tftp-hpa/ChangeLog
+++ b/app-admin/tftp-hpa/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-admin/tftp-hpa
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tftp-hpa/ChangeLog,v 1.6 2003/02/12 02:27:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tftp-hpa/ChangeLog,v 1.7 2003/03/28 22:11:41 tantive Exp $
+
+
+*tftp-hpa-0.33 (28 Mar 2003)
+
+ 28 Mar 2003; Michael Imhof <tantive@gentoo.org>
+ Version bumped, thanks to Terje Kvernes <terjekv@math.uio.no>
+ for the hint. Should close #18327.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
diff --git a/app-admin/tftp-hpa/files/digest-tftp-hpa-0.33 b/app-admin/tftp-hpa/files/digest-tftp-hpa-0.33
new file mode 100644
index 000000000000..8cea187c53bf
--- /dev/null
+++ b/app-admin/tftp-hpa/files/digest-tftp-hpa-0.33
@@ -0,0 +1 @@
+MD5 502238535a2362c7e65454c7b27c701c tftp-hpa-0.33.tar.bz2 75138
diff --git a/app-admin/tftp-hpa/tftp-hpa-0.33.ebuild b/app-admin/tftp-hpa/tftp-hpa-0.33.ebuild
new file mode 100644
index 000000000000..ceb1b242475a
--- /dev/null
+++ b/app-admin/tftp-hpa/tftp-hpa-0.33.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tftp-hpa/tftp-hpa-0.33.ebuild,v 1.1 2003/03/28 22:11:41 tantive Exp $
+
+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/"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~x86 ~ppc ~sparc"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+ econf || 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
+}