summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-28 01:36:16 +0000
committerMike Frysinger <vapier@gentoo.org>2005-04-28 01:36:16 +0000
commitf477d5d5c21589009c59670e6d7599ae9693f19d (patch)
treee78cd33924cddf9bffd923dc39e8c9baa212b008 /net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild
parentStable on sparc (diff)
downloadgentoo-2-f477d5d5c21589009c59670e6d7599ae9693f19d.tar.gz
gentoo-2-f477d5d5c21589009c59670e6d7599ae9693f19d.tar.bz2
gentoo-2-f477d5d5c21589009c59670e6d7599ae9693f19d.zip
dont install manpage which conflicts with iputils
(Portage version: 2.0.51.20-r4)
Diffstat (limited to 'net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild')
-rw-r--r--net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild b/net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild
index bbfe89e6c2bf..a79057bb57e3 100644
--- a/net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild
+++ b/net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 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.40-r1.ebuild,v 1.1 2005/02/27 22:31:41 squinky86 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/tftp-hpa/tftp-hpa-0.40-r1.ebuild,v 1.2 2005/04/28 01:36:16 vapier Exp $
DESCRIPTION="port of the OpenBSD TFTP server"
SRC_URI="mirror://kernel/software/network/tftp/${P}.tar.bz2"
@@ -11,16 +11,16 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~s390"
IUSE=""
-DEPEND="virtual/libc
- !virtual/tftp"
+DEPEND="!virtual/tftp"
PROVIDE="virtual/tftp"
src_install() {
- make INSTALLROOT=${D} install || die
+ 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
+ # iputils installs this
+ rm -f "${D}"/usr/share/man/man8/tftpd.8
+
+ newconfd "${FILESDIR}"/in.tftpd.confd in.tftpd
+ newinitd "${FILESDIR}"/in.tftpd.rc6 in.tftpd
}