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:
parent
5062956c18
commit
8ae75e7cea
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=534737
@ -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
20
www/gopherus/Makefile
Normal 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
3
www/gopherus/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1589023983
|
||||
SHA256 (gopherus-1.2.1.tar.xz) = 510f71591ae2f40c55bfff47f3c215c75d85acf45184e752a381df6a6c64787b
|
||||
SIZE (gopherus-1.2.1.tar.xz) = 1377952
|
8
www/gopherus/files/Makefile
Normal file
8
www/gopherus/files/Makefile
Normal 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>
|
10
www/gopherus/files/patch-net_net-bsd.c
Normal file
10
www/gopherus/files/patch-net_net-bsd.c
Normal 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)
|
20
www/gopherus/files/patch-ui_ui-curse.c
Normal file
20
www/gopherus/files/patch-ui_ui-curse.c
Normal 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
4
www/gopherus/pkg-descr
Normal 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/
|
Loading…
Reference in New Issue
Block a user