summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-02-24 02:50:52 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-02-24 02:50:52 +0000
commit6d11ceb7e5d9878d140d26d7bbf9940d6fb4300f (patch)
tree7df371c22aa390f8e2288b4c7ded57e41bd8383e /app-misc/rpc
parentupdate dev-perl/gd mask (diff)
downloadgentoo-2-6d11ceb7e5d9878d140d26d7bbf9940d6fb4300f.tar.gz
gentoo-2-6d11ceb7e5d9878d140d26d7bbf9940d6fb4300f.tar.bz2
gentoo-2-6d11ceb7e5d9878d140d26d7bbf9940d6fb4300f.zip
new package (ncurses based rpn calculator)
Diffstat (limited to 'app-misc/rpc')
-rw-r--r--app-misc/rpc/ChangeLog12
-rw-r--r--app-misc/rpc/files/digest-rpc-0.971
-rw-r--r--app-misc/rpc/rpc-0.97.ebuild34
3 files changed, 47 insertions, 0 deletions
diff --git a/app-misc/rpc/ChangeLog b/app-misc/rpc/ChangeLog
new file mode 100644
index 000000000000..8ddf5ac3cf9f
--- /dev/null
+++ b/app-misc/rpc/ChangeLog
@@ -0,0 +1,12 @@
+# 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.1 2003/02/24 02:50:52 george Exp $
+
+*rpc-0.97.ebuild (23 Feb 2003)
+
+ 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.
+ ebuild submitted by Bernardo S. A. Silva <bsaslinux@globo.com>
diff --git a/app-misc/rpc/files/digest-rpc-0.97 b/app-misc/rpc/files/digest-rpc-0.97
new file mode 100644
index 000000000000..f1137380a3dd
--- /dev/null
+++ b/app-misc/rpc/files/digest-rpc-0.97
@@ -0,0 +1 @@
+MD5 5afa7f18290d1280e57c8b9fb3e65412 rpc-0.97.tar.gz 144313
diff --git a/app-misc/rpc/rpc-0.97.ebuild b/app-misc/rpc/rpc-0.97.ebuild
new file mode 100644
index 000000000000..a84d8f510233
--- /dev/null
+++ b/app-misc/rpc/rpc-0.97.ebuild
@@ -0,0 +1,34 @@
+# 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.ebuild,v 1.1 2003/02/24 02:50:52 george Exp $
+
+IUSE=""
+
+S=${WORKDIR}/${P}
+DESCRIPTION="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."
+
+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() {
+
+ econf || die "econf failed"
+ make || die "make failed"
+
+}
+
+src_install() {
+
+ einstall || die
+ dodoc AUTHORS COPYING INSTALL NEWS README doc/DESIGN doc/manual
+
+}