diff options
author | George Shapovalov <george@gentoo.org> | 2003-05-07 18:33:38 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-05-07 18:33:38 +0000 |
commit | 1bf589b1c45ab49d2f420868cbf6d566a4d78e80 (patch) | |
tree | 68a27e4030440eca0493387bff52c8f9be5afe1f /app-misc | |
parent | added x11-base/xfree to DEPEND (diff) | |
download | gentoo-2-1bf589b1c45ab49d2f420868cbf6d566a4d78e80.tar.gz gentoo-2-1bf589b1c45ab49d2f420868cbf6d566a4d78e80.tar.bz2 gentoo-2-1bf589b1c45ab49d2f420868cbf6d566a4d78e80.zip |
upstream fix for fuctorial function
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/rpc/ChangeLog | 13 | ||||
-rw-r--r-- | app-misc/rpc/files/digest-rpc-0.97-r1 | 1 | ||||
-rw-r--r-- | app-misc/rpc/files/rpc-0.97-factorial-fix.diff.bz2 | bin | 0 -> 773 bytes | |||
-rw-r--r-- | app-misc/rpc/rpc-0.97-r1.ebuild | 33 |
4 files changed, 43 insertions, 4 deletions
diff --git a/app-misc/rpc/ChangeLog b/app-misc/rpc/ChangeLog index dd6d4da60166..0fc504b81d13 100644 --- a/app-misc/rpc/ChangeLog +++ b/app-misc/rpc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/rpc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/rpc/ChangeLog,v 1.2 2003/03/30 21:22:59 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rpc/ChangeLog,v 1.3 2003/05/07 18:33:38 george Exp $ + + 07 May 2003; George Shapovalov <george@gentoo.org> rpc-0.97-r1.ebuild, files/{rpc-0.97-factorial-fix.diff.bz2,digest-rpc-0.97-r1} : + incorporated the upstream fix to factorial function, (#19120) + thanks to Bernardo S. A. Silva <bsaslinux@globo.com> for submitting the fix! *rpc-0.97 (23 Feb 2003) @@ -9,7 +13,8 @@ 23 Feb 2003; George Shapovalov <george@gentoo.org> rpc-0.97.ebuild, files/digest-rpc-0.97 : initial release (#13209) - rpc is a fullscreen console-based RPN calculator that uses the curses library. Its operation is similar to that of - modern HP calculators, but data entry has been optimized for efficiency on a PC keyboard. Its features include - extensive scientific calculator functionality, command completion, and a visible interactive stack. + rpc is a fullscreen console-based RPN calculator that uses the curses library. + Its operation is similar to that of modern HP calculators, but data entry has been + optimized for efficiency on a PC keyboard. Its features include extensive scientific + calculator functionality, command completion, and a visible interactive stack. ebuild submitted by Bernardo S. A. Silva <bsaslinux@globo.com> diff --git a/app-misc/rpc/files/digest-rpc-0.97-r1 b/app-misc/rpc/files/digest-rpc-0.97-r1 new file mode 100644 index 000000000000..f1137380a3dd --- /dev/null +++ b/app-misc/rpc/files/digest-rpc-0.97-r1 @@ -0,0 +1 @@ +MD5 5afa7f18290d1280e57c8b9fb3e65412 rpc-0.97.tar.gz 144313 diff --git a/app-misc/rpc/files/rpc-0.97-factorial-fix.diff.bz2 b/app-misc/rpc/files/rpc-0.97-factorial-fix.diff.bz2 Binary files differnew file mode 100644 index 000000000000..212d81949a3b --- /dev/null +++ b/app-misc/rpc/files/rpc-0.97-factorial-fix.diff.bz2 diff --git a/app-misc/rpc/rpc-0.97-r1.ebuild b/app-misc/rpc/rpc-0.97-r1.ebuild new file mode 100644 index 000000000000..22ee3186d81d --- /dev/null +++ b/app-misc/rpc/rpc-0.97-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/rpc/rpc-0.97-r1.ebuild,v 1.1 2003/05/07 18:33:38 george Exp $ + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="a fullscreen console-based RPN calculator that uses the curses library." + +SRC_URI="http://www.eecs.umich.edu/~pelzlpj/rpc/${P}.tar.gz" +HOMEPAGE="http://www.eecs.umich.edu/~pelzlpj/rpc/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc sparc" + +DEPEND=">=dev-libs/ccmath-2.2 + sys-libs/ncurses" + +src_compile() { + + patch -p1 < ${FILESDIR}/rpc-0.97-factorial-fix.diff.bz2 + econf || die "econf failed" + make || die "make failed" + +} + +src_install() { + + einstall || die + dodoc AUTHORS COPYING INSTALL NEWS README doc/DESIGN doc/manual + +} |