blob: d0c88a6edc6a3035b468ea841517a065df9bfe12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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.4 2003/09/05 12:10:36 msterret 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
}
|