From c6877258df8a4501679ab16e2ecdaa80c1241881 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 29 Oct 2004 00:38:54 +0000 Subject: fix typo in patch --- net-misc/ipx-utils/ChangeLog | 6 +++- net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 | 1 - net-misc/ipx-utils/files/digest-ipx-utils-1.1-r2 | 1 + net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch | 2 +- net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild | 37 ----------------------- net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild | 37 +++++++++++++++++++++++ 6 files changed, 44 insertions(+), 40 deletions(-) delete mode 100644 net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 create mode 100644 net-misc/ipx-utils/files/digest-ipx-utils-1.1-r2 delete mode 100644 net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild create mode 100644 net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild (limited to 'net-misc') diff --git a/net-misc/ipx-utils/ChangeLog b/net-misc/ipx-utils/ChangeLog index ced588f3b49e..efc56603b6b6 100644 --- a/net-misc/ipx-utils/ChangeLog +++ b/net-misc/ipx-utils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/ipx-utils # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipx-utils/ChangeLog,v 1.10 2004/10/16 17:19:20 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipx-utils/ChangeLog,v 1.11 2004/10/29 00:38:54 vapier Exp $ + + 28 Oct 2004; Mike Frysinger + files/ipx-utils-1.1-proc.patch: + Fix a typo in the proc patch #67642. *ipx-utils-1.1-r1 (16 Oct 2004) diff --git a/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 b/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 deleted file mode 100644 index dda49eb20af9..000000000000 --- a/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 300bdb7e4c8ed31d510c4781c0ae3969 ipx-1.1.tar.gz 8177 diff --git a/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r2 b/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r2 new file mode 100644 index 000000000000..dda49eb20af9 --- /dev/null +++ b/net-misc/ipx-utils/files/digest-ipx-utils-1.1-r2 @@ -0,0 +1 @@ +MD5 300bdb7e4c8ed31d510c4781c0ae3969 ipx-1.1.tar.gz 8177 diff --git a/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch b/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch index 4c9a5986cf00..d82d228ff139 100644 --- a/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch +++ b/net-misc/ipx-utils/files/ipx-utils-1.1-proc.patch @@ -5,7 +5,7 @@ } - fp = fopen("/proc/net/ipx_interface", "r"); -+ fp = fopen("/proc/net/ipx/ipx_interface", "r"); ++ fp = fopen("/proc/net/ipx/interface", "r"); + if (fp == NULL) + fp = fopen("/proc/net/ipx_interface", "r"); if (fp == NULL) { diff --git a/net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild b/net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild deleted file mode 100644 index 9d73da3710f3..000000000000 --- a/net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ipx-utils/ipx-utils-1.1-r1.ebuild,v 1.1 2004/10/16 17:19:20 vapier Exp $ - -inherit eutils - -DESCRIPTION="The IPX Utilities" -HOMEPAGE="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/" -SRC_URI="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/${P/-utils}.tar.gz" - -LICENSE="Caldera" -SLOT="0" -KEYWORDS="ppc64 s390 sparc x86" -IUSE="" - -DEPEND="virtual/libc" - -S=${WORKDIR}/${P/-utils} - -src_unpack() { - unpack ${A} - - cd ${S} - sed -i "s:-O2 -Wall:${CFLAGS}:" Makefile - epatch ${FILESDIR}/${P}-makefile.patch - epatch ${FILESDIR}/${P}-proc.patch #67642 -} - -src_install() { - dodir /sbin /usr/share/man/man8 - make DESTDIR=${D} install || die - - insinto /etc/conf.d ; newins ${FILESDIR}/ipx.confd ipx - exeinto /etc/init.d ; newexe ${FILESDIR}/ipx.init ipx - - dodoc README -} diff --git a/net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild b/net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild new file mode 100644 index 000000000000..761d4826a371 --- /dev/null +++ b/net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ipx-utils/ipx-utils-1.1-r2.ebuild,v 1.1 2004/10/29 00:38:54 vapier Exp $ + +inherit eutils + +DESCRIPTION="The IPX Utilities" +HOMEPAGE="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/" +SRC_URI="ftp://sunsite.unc.edu/pub/Linux/system/filesystems/ncpfs/${P/-utils}.tar.gz" + +LICENSE="Caldera" +SLOT="0" +KEYWORDS="ppc64 s390 sparc x86" +IUSE="" + +DEPEND="virtual/libc" + +S=${WORKDIR}/${P/-utils} + +src_unpack() { + unpack ${A} + + cd ${S} + sed -i "s:-O2 -Wall:${CFLAGS}:" Makefile + epatch ${FILESDIR}/${P}-makefile.patch + epatch ${FILESDIR}/${P}-proc.patch #67642 +} + +src_install() { + dodir /sbin /usr/share/man/man8 + make DESTDIR=${D} install || die + + insinto /etc/conf.d ; newins ${FILESDIR}/ipx.confd ipx + exeinto /etc/init.d ; newexe ${FILESDIR}/ipx.init ipx + + dodoc README +} -- cgit v1.2.3-65-gdbad