Date: Tue, 30 Jun 2020 12:53:24 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540892 - in head/net: . sacc sacc/files Message-ID: <202006301253.05UCrOq6005409@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Tue Jun 30 12:53:24 2020 New Revision: 540892 URL: https://svnweb.freebsd.org/changeset/ports/540892 Log: Add a port of Sacc(omys), simple console Gopher client. PR: 228280 Added: head/net/sacc/ head/net/sacc/Makefile (contents, props changed) head/net/sacc/distinfo (contents, props changed) head/net/sacc/files/ head/net/sacc/files/patch-Makefile (contents, props changed) head/net/sacc/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jun 30 12:50:46 2020 (r540891) +++ head/net/Makefile Tue Jun 30 12:53:24 2020 (r540892) @@ -1342,6 +1342,7 @@ SUBDIR += rubygem-xmlrpc SUBDIR += rude SUBDIR += ryu + SUBDIR += sacc SUBDIR += samba410 SUBDIR += samba411 SUBDIR += samplicator Added: head/net/sacc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sacc/Makefile Tue Jun 30 12:53:24 2020 (r540892) @@ -0,0 +1,21 @@ +# Created by: Stefan Hagen <sh@codevoid.de> +# $FreeBSD$ + +PORTNAME= sacc +PORTVERSION= 1.01 +CATEGORIES= net +MASTER_SITES= ftp://bitreich.org/releases/sacc/ + +MAINTAINER= sh@codevoid.de +COMMENT= Simple console Gopher client + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= xdg-open:devel/xdg-utils + +USES= tar:tgz + +PLIST_FILES= bin/sacc share/man/man1/sacc.1.gz + +.include <bsd.port.mk> Added: head/net/sacc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sacc/distinfo Tue Jun 30 12:53:24 2020 (r540892) @@ -0,0 +1,3 @@ +TIMESTAMP = 1589518597 +SHA256 (sacc-1.01.tgz) = cb5784b2cd69a8a0276901b99a1093ac77fba37c6c2fb5c2935d87c4964925ba +SIZE (sacc-1.01.tgz) = 12011 Added: head/net/sacc/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sacc/files/patch-Makefile Tue Jun 30 12:53:24 2020 (r540892) @@ -0,0 +1,12 @@ +--- Makefile.orig 2020-02-19 20:41:12 UTC ++++ Makefile +@@ -32,8 +32,7 @@ uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN) $(DESTDIR)$(MANDIR)/$(MAN) + + # Stock FLAGS +-SACCCFLAGS = -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE -D_GNU_SOURCE \ +- $(CFLAGS) ++SACCCFLAGS = $(CFLAGS) + + .c.o: + $(CC) $(SACCCFLAGS) -c $< Added: head/net/sacc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sacc/pkg-descr Tue Jun 30 12:53:24 2020 (r540892) @@ -0,0 +1,3 @@ +Sacc(omys) is fast and small terminal Gopher client written in C. + +WWW: https://git.fifth.space/sacc/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006301253.05UCrOq6005409>