diff options
Diffstat (limited to 'math/grpn')
-rw-r--r-- | math/grpn/Makefile | 26 | ||||
-rw-r--r-- | math/grpn/distinfo | 2 | ||||
-rw-r--r-- | math/grpn/files/patch-Makefile | 32 | ||||
-rw-r--r-- | math/grpn/files/patch-complex.c | 10 | ||||
-rw-r--r-- | math/grpn/files/patch-help.c | 10 | ||||
-rw-r--r-- | math/grpn/files/patch-lcd.c | 11 | ||||
-rw-r--r-- | math/grpn/files/patch-main.c | 10 | ||||
-rw-r--r-- | math/grpn/files/patch-mode.c | 10 | ||||
-rw-r--r-- | math/grpn/files/patch-process_input.c | 10 | ||||
-rw-r--r-- | math/grpn/files/patch-run_cmd.c | 10 | ||||
-rw-r--r-- | math/grpn/pkg-descr | 9 |
11 files changed, 0 insertions, 140 deletions
diff --git a/math/grpn/Makefile b/math/grpn/Makefile deleted file mode 100644 index d1e97aa79832..000000000000 --- a/math/grpn/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# Created by: Chris D. Faulhaber <jedgar@fxp.org> -# $FreeBSD$ - -PORTNAME= grpn -PORTVERSION= 1.1.2 -PORTREVISION= 8 -CATEGORIES= math -MASTER_SITES= http://lashwhip.com/grpn/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= GTK+-based reverse polish notation (RPN) calculator - -DEPRECATED= Uses obsolete glib12 -EXPIRATION_DATE= 2018-12-20 - -USE_GNOME= gtk12 - -ALL_TARGET= - -PLIST_FILES= bin/grpn man/man1/grpn.1.gz - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/grpn ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/grpn.1 ${STAGEDIR}${PREFIX}/man/man1 - -.include <bsd.port.mk> diff --git a/math/grpn/distinfo b/math/grpn/distinfo deleted file mode 100644 index 43f38550dd0c..000000000000 --- a/math/grpn/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (grpn-1.1.2.tar.gz) = 396274b31588e9df26f28704e95456bd2c3b859e5aa1740e47143fc27884e560 -SIZE (grpn-1.1.2.tar.gz) = 46153 diff --git a/math/grpn/files/patch-Makefile b/math/grpn/files/patch-Makefile deleted file mode 100644 index c55c8e64731b..000000000000 --- a/math/grpn/files/patch-Makefile +++ /dev/null @@ -1,32 +0,0 @@ ---- Makefile.orig 2002-04-05 05:56:05.000000000 +0200 -+++ Makefile 2013-11-05 16:39:16.000000000 +0100 -@@ -6,7 +6,7 @@ - PREFIX = /usr/local/ - - # What compiler should be used --CC = gcc -+CC?= gcc - - # Where to find the gtk-config script - GTK_DIR = -@@ -20,9 +20,9 @@ GTK_DIR = - # add -DUSE_GNOME if you want to make grpn GNOME compliant. - - --CFLAGS = -g -O2 -I/usr/X11/include `$(GTK_DIR)gtk-config --cflags` -DGTK_VER_1_1 -+CFLAGS+= -I${LOCALBASE}/include -I${PREFIX}/include `${GTK_CONFIG} --cflags` -DGTK_VER_1_1 - --DFLAGS = -L/usr/X11/lib -+DFLAGS = -L${LOCALBASE}/lib -L${PREFIX}/lib - - # end of user configurable section - -@@ -37,7 +37,7 @@ OBJS = test_gtk_ver.o real.o complex.o m - - - --LIBS = `$(GTK_DIR)gtk-config --libs` -lX11 -lm -+LIBS = `${GTK_CONFIG} --libs` -lX11 -lm - - - grpn: $(OBJS) diff --git a/math/grpn/files/patch-complex.c b/math/grpn/files/patch-complex.c deleted file mode 100644 index bfb241fda0ea..000000000000 --- a/math/grpn/files/patch-complex.c +++ /dev/null @@ -1,10 +0,0 @@ ---- complex.c.orig 2002-04-04 05:46:10.000000000 +0200 -+++ complex.c 2013-11-05 16:40:36.000000000 +0100 -@@ -21,6 +21,7 @@ Foundation, Inc., 59 Temple Place - Suit - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <math.h> - - #include "complex.h" diff --git a/math/grpn/files/patch-help.c b/math/grpn/files/patch-help.c deleted file mode 100644 index 823c30dc4d7f..000000000000 --- a/math/grpn/files/patch-help.c +++ /dev/null @@ -1,10 +0,0 @@ ---- help.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ help.c 2013-11-05 16:44:41.000000000 +0100 -@@ -19,6 +19,7 @@ Foundation, Inc., 59 Temple Place - Suit - */ - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <gtk/gtk.h> - - #include "help.h" diff --git a/math/grpn/files/patch-lcd.c b/math/grpn/files/patch-lcd.c deleted file mode 100644 index df0c7a35dd5a..000000000000 --- a/math/grpn/files/patch-lcd.c +++ /dev/null @@ -1,11 +0,0 @@ ---- lcd.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ lcd.c 2013-11-05 16:42:40.000000000 +0100 -@@ -20,6 +20,8 @@ Foundation, Inc., 59 Temple Place - Suit - /* lcd.c by Paul Wilkins 3/22/97 */ - - #include <stdio.h> -+#include <stdlib.h> -+#include <string.h> - #include <gtk/gtk.h> - #include <gdk/gdkkeysyms.h> - diff --git a/math/grpn/files/patch-main.c b/math/grpn/files/patch-main.c deleted file mode 100644 index 8c2d70330227..000000000000 --- a/math/grpn/files/patch-main.c +++ /dev/null @@ -1,10 +0,0 @@ ---- main.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ main.c 2013-11-05 16:42:00.000000000 +0100 -@@ -23,6 +23,7 @@ Foundation, Inc., 59 Temple Place - Suit - */ - - #include <stdio.h> -+#include <stdlib.h> - #ifdef USE_GNOME - #include <gnome.h> - #endif diff --git a/math/grpn/files/patch-mode.c b/math/grpn/files/patch-mode.c deleted file mode 100644 index 911e5718f1a7..000000000000 --- a/math/grpn/files/patch-mode.c +++ /dev/null @@ -1,10 +0,0 @@ ---- mode.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ mode.c 2013-11-05 16:44:30.000000000 +0100 -@@ -20,6 +20,7 @@ Foundation, Inc., 59 Temple Place - Suit - /* setup mode.c by Paul Wilkins 2/8/98 */ - - #include <stdio.h> -+#include <string.h> - #include <gtk/gtk.h> - - #include "mode.h" diff --git a/math/grpn/files/patch-process_input.c b/math/grpn/files/patch-process_input.c deleted file mode 100644 index 7666ba826b47..000000000000 --- a/math/grpn/files/patch-process_input.c +++ /dev/null @@ -1,10 +0,0 @@ ---- process_input.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ process_input.c 2013-11-05 16:43:55.000000000 +0100 -@@ -20,6 +20,7 @@ Foundation, Inc., 59 Temple Place - Suit - /* process_input.c by Paul Wilkins 3/21/97 */ - - #include <stdio.h> -+#include <stdlib.h> - #include <gtk/gtk.h> - #include <gdk/gdkkeysyms.h> - diff --git a/math/grpn/files/patch-run_cmd.c b/math/grpn/files/patch-run_cmd.c deleted file mode 100644 index ff220434c9a9..000000000000 --- a/math/grpn/files/patch-run_cmd.c +++ /dev/null @@ -1,10 +0,0 @@ ---- run_cmd.c.orig 2002-04-04 05:46:11.000000000 +0200 -+++ run_cmd.c 2013-11-05 16:41:30.000000000 +0100 -@@ -20,6 +20,7 @@ Foundation, Inc., 59 Temple Place - Suit - /* run_cmd.c by Paul Wilkins */ - - #include <stdio.h> -+#include <string.h> - #include <gtk/gtk.h> - - #include "buttons.h" diff --git a/math/grpn/pkg-descr b/math/grpn/pkg-descr deleted file mode 100644 index 4bd0fa366c01..000000000000 --- a/math/grpn/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -GRPN is a RPN calculator for the X Window system built using -the GIMP Toolkit (GTK). - -GRPN works with real numbers, complex numbers, matrices, and -complex matrices. Numbers can be displayed in 4 different -radix modes, and complex numbers can be displayed in either -Cartesian or polar form. - -WWW: http://lashwhip.com/grpn/ |