diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-04-17 05:38:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-04-17 05:38:52 +0000 |
commit | cf4d090f7d82425f7160af363fac41b542081b29 (patch) | |
tree | 38a6416087c5db83098d057c6a0385e3f6d92c87 /sys-apps/netkit-base | |
parent | swap USR1 and USR2 #89212 (diff) | |
download | historical-cf4d090f7d82425f7160af363fac41b542081b29.tar.gz historical-cf4d090f7d82425f7160af363fac41b542081b29.tar.bz2 historical-cf4d090f7d82425f7160af363fac41b542081b29.zip |
dont install the daemon.3 manpage since man-pages does #89345
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sys-apps/netkit-base')
-rw-r--r-- | sys-apps/netkit-base/Manifest | 12 | ||||
-rw-r--r-- | sys-apps/netkit-base/netkit-base-0.17-r8.ebuild | 44 |
2 files changed, 15 insertions, 41 deletions
diff --git a/sys-apps/netkit-base/Manifest b/sys-apps/netkit-base/Manifest index 18527c34a4d3..fc3cc2425c72 100644 --- a/sys-apps/netkit-base/Manifest +++ b/sys-apps/netkit-base/Manifest @@ -1,17 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 b1f0c4dba54a7f9d25442b92c8a4589b ChangeLog 3982 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 -MD5 78b4a52fe7b95083158d43229bcbd70b netkit-base-0.17-r8.ebuild 1719 +MD5 e1fb4407613c7df9285bc22e6903d869 netkit-base-0.17-r8.ebuild 1311 MD5 a6d426736cbb3c0534504a6e2d041b36 files/001_alpha_netkit-base-0.17-ping-fix.patch.bz2 686 MD5 93d4bc3300be01ea835abfc46863d005 files/002_all_netkit-base-0.17-wrong-byte-fix.patch.bz2 425 MD5 a770366b91d1b0e666ed61ccfff827bc files/digest-netkit-base-0.17-r8 67 MD5 9fd363583a8d1e68d34ff81fcf74c034 files/inetd.rc6 580 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFBYyAhHTu7gpaalycRAtsRAKC9laeB4Osd/WHCyaWxjg86Wq8sHgCfVpiB -LlJOBcjsEGbZquk7gQH3Cdg= -=YzVF ------END PGP SIGNATURE----- diff --git a/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild b/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild index 771420981870..41f716a36db9 100644 --- a/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild +++ b/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild,v 1.12 2004/06/30 22:11:03 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.17-r8.ebuild,v 1.13 2005/04/17 05:38:52 vapier Exp $ inherit eutils @@ -10,19 +10,19 @@ SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="x86 ppc sparc mips alpha hppa amd64 ia64" -IUSE="build" +KEYWORDS="alpha amd64 hppa ia64 mips ppc sparc x86" +IUSE="" -DEPEND="virtual/libc" +DEPEND="" PROVIDE="virtual/inetd" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Note that epatch will intelligently patch architecture specific # patches as well - epatch ${FILESDIR} + epatch "${FILESDIR}" } src_compile() { @@ -37,30 +37,14 @@ src_compile() { } src_install() { - exeopts -m 4755 + sed -i \ + -e 's:in\.telnetd$:in.telnetd -L /usr/sbin/telnetlogin:' \ + etc.sample/inetd.conf - # avenj@gentoo.org 19 June 03: - # Uncomment for the (obsolete) version of ping. - # Most people should merge iputils instead. -# exeinto /bin -# doexe ping/ping + dosbin inetd/inetd + doman inetd/inetd.8 + newinitd "${FILESDIR}"/inetd.rc6 inetd - if ! use build - then - cd ${S}/etc.sample - sed -e 's:in\.telnetd$:in.telnetd -L /usr/sbin/telnetlogin:' \ - < inetd.conf > inetd.conf.new - mv inetd.conf.new inetd.conf - cd ${S} - - exeopts -m 755 - exeinto /usr/bin - dosbin inetd/inetd - doman inetd/inetd.8 inetd/daemon.3 -# doman inetd/inetd.8 inetd/daemon.3 ping/ping.8 - - dodoc BUGS ChangeLog README - docinto samples ; dodoc etc.sample/* - exeinto /etc/init.d ; newexe ${FILESDIR}/inetd.rc6 inetd - fi + dodoc BUGS ChangeLog README + docinto samples ; dodoc etc.sample/* } |