diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-01-18 00:21:34 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-01-18 00:21:34 +0000 |
commit | 0f372eff6cd95f602017a6dc0103280490b14dff (patch) | |
tree | b82b40878ce971340e2b65e206f30e39e060f62f /net-ftp/tftp-hpa | |
parent | Update minimal needed versions. (diff) | |
download | gentoo-2-0f372eff6cd95f602017a6dc0103280490b14dff.tar.gz gentoo-2-0f372eff6cd95f602017a6dc0103280490b14dff.tar.bz2 gentoo-2-0f372eff6cd95f602017a6dc0103280490b14dff.zip |
0.45 broke the conf.d file, need a new revision for this.
(Portage version: 2.1.2_rc4-r9)
Diffstat (limited to 'net-ftp/tftp-hpa')
-rw-r--r-- | net-ftp/tftp-hpa/ChangeLog | 8 | ||||
-rw-r--r-- | net-ftp/tftp-hpa/files/digest-tftp-hpa-0.45-r1 | 3 | ||||
-rw-r--r-- | net-ftp/tftp-hpa/tftp-hpa-0.45-r1.ebuild | 51 |
3 files changed, 61 insertions, 1 deletions
diff --git a/net-ftp/tftp-hpa/ChangeLog b/net-ftp/tftp-hpa/ChangeLog index 5398148fd08e..87c8920d6c68 100644 --- a/net-ftp/tftp-hpa/ChangeLog +++ b/net-ftp/tftp-hpa/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-ftp/tftp-hpa # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/ChangeLog,v 1.23 2007/01/08 01:52:57 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/ChangeLog,v 1.24 2007/01/18 00:21:34 robbat2 Exp $ + +*tftp-hpa-0.45-r1 (18 Jan 2007) + + 18 Jan 2007; Robin H. Johnson <robbat2@gentoo.org> + +tftp-hpa-0.45-r1.ebuild: + 0.45 broke the conf.d file, need a new revision for this. 08 Jan 2007; Danny van Dyk <kugelfang@gentoo.org> -tftp-hpa-0.44.ebuild: QA: Removed unused versions. diff --git a/net-ftp/tftp-hpa/files/digest-tftp-hpa-0.45-r1 b/net-ftp/tftp-hpa/files/digest-tftp-hpa-0.45-r1 new file mode 100644 index 000000000000..4a8fecd7ecf9 --- /dev/null +++ b/net-ftp/tftp-hpa/files/digest-tftp-hpa-0.45-r1 @@ -0,0 +1,3 @@ +MD5 85f01fbb676bb9d56a47d02209c9995d tftp-hpa-0.45.tar.bz2 83335 +RMD160 2ad15d451501443f47c4f72f7dbf4d9fe96396eb tftp-hpa-0.45.tar.bz2 83335 +SHA256 8ccad375ab1444bd4685947f5763e88eae09cc924c4bf3220f6686e9f7b27edd tftp-hpa-0.45.tar.bz2 83335 diff --git a/net-ftp/tftp-hpa/tftp-hpa-0.45-r1.ebuild b/net-ftp/tftp-hpa/tftp-hpa-0.45-r1.ebuild new file mode 100644 index 000000000000..8737dac675fd --- /dev/null +++ b/net-ftp/tftp-hpa/tftp-hpa-0.45-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/tftp-hpa-0.45-r1.ebuild,v 1.1 2007/01/18 00:21:34 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="port of the OpenBSD TFTP server" +HOMEPAGE="http://www.kernel.org/pub/software/network/tftp/" +SRC_URI="mirror://kernel/software/network/tftp/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="readline selinux tcpd" + +DEPEND="readline? ( sys-libs/readline ) + tcpd? ( sys-apps/tcp-wrappers ) + selinux? ( sec-policy/selinux-tftpd ) + !virtual/tftp" +PROVIDE="virtual/tftp" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-parallel.patch +} + +src_compile() { + econf \ + $(use_with tcpd tcpwrappers) \ + $(use_with readline) \ + || die + emake || die +} + +src_install() { + emake INSTALLROOT="${D}" install || die + dodoc README* CHANGES tftpd/sample.rules + + # iputils installs this + rm -f "${D}"/usr/share/man/man8/tftpd.8 + + newconfd "${FILESDIR}"/in.tftpd.confd-0.44 in.tftpd + newinitd "${FILESDIR}"/in.tftpd.rc6 in.tftpd +} + +pkg_postinst() { + ewarn "After installation, please ensure you look at" + ewarn "/etc/conf.d/in.tftpd and set the correct path" + ewarn "for your application." +} |