1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

New port: www/gopherus

Gopherus is a free, multiplatform, console-mode gopher client that
provides a classic text interface to the gopherspace.

WWW: http://gopherus.sourceforge.net/
This commit is contained in:
Tobias Kortkamp 2020-05-09 12:20:57 +00:00
parent 5062956c18
commit 8ae75e7cea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=534737
7 changed files with 66 additions and 0 deletions

View File

@ -199,6 +199,7 @@
SUBDIR += googlebook_dl
SUBDIR += googler
SUBDIR += goose
SUBDIR += gopherus
SUBDIR += gotty
SUBDIR += gpx2map
SUBDIR += grafana

20
www/gopherus/Makefile Normal file
View File

@ -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>

3
www/gopherus/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1589023983
SHA256 (gopherus-1.2.1.tar.xz) = 510f71591ae2f40c55bfff47f3c215c75d85acf45184e752a381df6a6c64787b
SIZE (gopherus-1.2.1.tar.xz) = 1377952

View File

@ -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>

View File

@ -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)

View File

@ -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 */

4
www/gopherus/pkg-descr Normal file
View File

@ -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/