1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
rpc is a full-screen RPN calculator program
This commit is contained in:
Ying-Chieh Liao 2001-03-21 13:25:33 +00:00
parent 174fded7f6
commit 76cebd1b34
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40156
8 changed files with 62 additions and 0 deletions

View File

@ -80,6 +80,7 @@
SUBDIR += py-scientific
SUBDIR += pygist
SUBDIR += rcalc
SUBDIR += rpc
SUBDIR += ruby-bigfloat
SUBDIR += ruby-bitvector
SUBDIR += ruby-gnuplot

19
math/rpc/Makefile Normal file
View File

@ -0,0 +1,19 @@
# ex:ts=8
# New ports collection makefile for: rpc
# Date created: Mar 21, 2001
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= rpc
PORTVERSION= 0.93
CATEGORIES= math
MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/rpc/
MAINTAINER= ijliao@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/lib/libccm.so:${PORTSDIR}/math/ccmath
RUN_DEPENDS= ${LOCALBASE}/lib/libccm.so:${PORTSDIR}/math/ccmath
.include <bsd.port.mk>

1
math/rpc/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (rpc-0.93.tar.gz) = b922136a2a258f9bdbc1e20299ad76c2

View File

@ -0,0 +1,22 @@
--- Makefile.orig Wed Mar 21 21:02:32 2001
+++ Makefile Wed Mar 21 21:03:58 2001
@@ -1,5 +1,5 @@
CXXFLAGS = -c -O2 -Wall
-LDFLAGS = -lm -lccm -lcurses
+LDFLAGS = -lm -lccm -lcurses -L${LOCALBASE}/lib
all: rpc
@@ -7,10 +7,10 @@
cd src; $(MAKE)
install:
- cp -f src/rpc /usr/bin
+ cp -f src/rpc ${PREFIX}/bin
uninstall:
- rm /usr/bin/rpc
+ rm ${PREFIX}/bin/rpc
clean:
rm -f core src/rpc src/*.o src/*.co src/core

View File

@ -0,0 +1,11 @@
--- src/Makefile.orig Sun Feb 25 15:54:19 2001
+++ src/Makefile Wed Mar 21 21:09:40 2001
@@ -1,6 +1,6 @@
CXXFLAGS = -c -O2 -Wall
-CFLAGS = -c -O2 -Wall
-LDFLAGS = -lm -lccm -lcurses
+CFLAGS = -c -O2 -Wall -I${LOCALBASE}/include
+LDFLAGS = -lm -lccm -lcurses -L${LOCALBASE}/lib
all: rpc

1
math/rpc/pkg-comment Normal file
View File

@ -0,0 +1 @@
A full-screen RPN calculator program

6
math/rpc/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
In the great tradition of bc and dc, a new console-based calculator
application is born! rpc is a full-screen RPN calculator program
based on the curses library. It works like some of the more popular
reverse-polish-notation calculators available on the market today.
WWW: http://www.eecs.umich.edu/~pelzlpj/rpc/

1
math/rpc/pkg-plist Normal file
View File

@ -0,0 +1 @@
bin/rpc