diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-03-28 22:11:41 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-03-28 22:11:41 +0000 |
commit | a9ac4f02b31d2f84208fd6b348172805eb3925c4 (patch) | |
tree | aac94f5fd4943d1c8d9e6ce754c553ff94562c2e /app-admin | |
parent | elibtoolize fix (diff) | |
download | historical-a9ac4f02b31d2f84208fd6b348172805eb3925c4.tar.gz historical-a9ac4f02b31d2f84208fd6b348172805eb3925c4.tar.bz2 historical-a9ac4f02b31d2f84208fd6b348172805eb3925c4.zip |
Version bumped. Should close #18327.
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/tftp-hpa/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/tftp-hpa/files/digest-tftp-hpa-0.33 | 1 | ||||
-rw-r--r-- | app-admin/tftp-hpa/tftp-hpa-0.33.ebuild | 28 |
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 +} |