diff options
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/gopherus/Makefile | 20 | ||||
-rw-r--r-- | www/gopherus/distinfo | 3 | ||||
-rw-r--r-- | www/gopherus/files/Makefile | 8 | ||||
-rw-r--r-- | www/gopherus/files/patch-net_net-bsd.c | 10 | ||||
-rw-r--r-- | www/gopherus/files/patch-ui_ui-curse.c | 20 | ||||
-rw-r--r-- | www/gopherus/pkg-descr | 4 |
7 files changed, 66 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 8e3f2b03fc28..c965a4cac9bb 100644 --- a/www/Makefile +++ b/www/Makefile @@ -199,6 +199,7 @@ SUBDIR += googlebook_dl SUBDIR += googler SUBDIR += goose + SUBDIR += gopherus SUBDIR += gotty SUBDIR += gpx2map SUBDIR += grafana diff --git a/www/gopherus/Makefile b/www/gopherus/Makefile new file mode 100644 index 000000000000..3124694b91e8 --- /dev/null +++ b/www/gopherus/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= gopherus +DISTVERSION= 1.2.1 +CATEGORIES= www +MASTER_SITES= SF/gopherus/v${DISTVERSION} + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Classic text interface to the gopherspace + +LICENSE= BSD2CLAUSE + +USES= ncurses tar:xz uidfix +MAKEFILE= ${FILESDIR}/Makefile +CFLAGS+= -I${NCURSESINC} +LDFLAGS+= -L${NCURSESLIB} -l${NCURSES_IMPL} + +PLIST_FILES= bin/gopherus + +.include <bsd.port.mk> diff --git a/www/gopherus/distinfo b/www/gopherus/distinfo new file mode 100644 index 000000000000..25f9646e7d85 --- /dev/null +++ b/www/gopherus/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1589023983 +SHA256 (gopherus-1.2.1.tar.xz) = 510f71591ae2f40c55bfff47f3c215c75d85acf45184e752a381df6a6c64787b +SIZE (gopherus-1.2.1.tar.xz) = 1377952 diff --git a/www/gopherus/files/Makefile b/www/gopherus/files/Makefile new file mode 100644 index 000000000000..d13b4e67fa20 --- /dev/null +++ b/www/gopherus/files/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PROG= gopherus +SRCS= gopherus.c dnscache.c fs/fs-lin.c history.c net/net-bsd.c parseurl.c readflin.c startpg.c ui/ui-curse.c wordwrap.c +MAN= +BINDIR= ${PREFIX}/bin + +.include <bsd.prog.mk> diff --git a/www/gopherus/files/patch-net_net-bsd.c b/www/gopherus/files/patch-net_net-bsd.c new file mode 100644 index 000000000000..11d84e2be65d --- /dev/null +++ b/www/gopherus/files/patch-net_net-bsd.c @@ -0,0 +1,10 @@ +--- net/net-bsd.c.orig 2020-05-09 11:36:10 UTC ++++ net/net-bsd.c +@@ -20,6 +20,7 @@ + #include <sys/socket.h> /* socket() */ + #include <sys/select.h> /* select(), fd_set() */ + #include <arpa/inet.h> ++ #include <netinet/in.h> + #include <netdb.h> + #include <unistd.h> /* close() */ + #define CLOSESOCK(x) close(x) diff --git a/www/gopherus/files/patch-ui_ui-curse.c b/www/gopherus/files/patch-ui_ui-curse.c new file mode 100644 index 000000000000..655d3935d3f3 --- /dev/null +++ b/www/gopherus/files/patch-ui_ui-curse.c @@ -0,0 +1,20 @@ +--- ui/ui-curse.c.orig 2020-01-22 17:13:40 UTC ++++ ui/ui-curse.c +@@ -10,7 +10,7 @@ + #define _XOPEN_SOURCE_EXTENDED + + #include <locale.h> +-#include <ncursesw/curses.h> ++#include <curses.h> + #include <stdio.h> /* this one contains the NULL definition */ + #include <string.h> + +@@ -149,7 +149,7 @@ int ui_getkey(void) { + case KEY_RIGHT: return(0x14D); + case KEY_UP: return(0x148); + case KEY_DOWN: return(0x150); +- case KEY_BACKSPACE: return(8); ++ case KEY_BACKSPACE: case 127: return(8); + case KEY_ENTER: return(13); + case KEY_PPAGE: return(0x149); /* PAGEUP */ + case KEY_NPAGE: return(0x151); /* PGDOWN */ diff --git a/www/gopherus/pkg-descr b/www/gopherus/pkg-descr new file mode 100644 index 000000000000..49076b0c8651 --- /dev/null +++ b/www/gopherus/pkg-descr @@ -0,0 +1,4 @@ +Gopherus is a free, multiplatform, console-mode gopher client that +provides a classic text interface to the gopherspace. + +WWW: http://gopherus.sourceforge.net/ |