svn commit: r568498 - in head/www: . vger

Neel Chauhan nc at FreeBSD.org
Mon Mar 15 19:45:13 UTC 2021


Author: nc
Date: Mon Mar 15 19:45:11 2021
New Revision: 568498
URL: https://svnweb.freebsd.org/changeset/ports/568498

Log:
  New port: www/vger: A simplistic and secure Gemini server
  
  Vger is a gemini server supporting chroot, virtualhosts, CGI, default language
  choice, redirections and MIME types detection.
  
  Vger design is relying on inetd and a daemon to take care of TLS. The idea is
  to delegate TLS and network to daemons which proved doing it correctly, so vger
  takes its request from stdin and output the result to stdout.
  
  https://tildegit.org/solene/vger

Added:
  head/www/vger/
  head/www/vger/Makefile   (contents, props changed)
  head/www/vger/distinfo   (contents, props changed)
  head/www/vger/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Mon Mar 15 19:37:48 2021	(r568497)
+++ head/www/Makefile	Mon Mar 15 19:45:11 2021	(r568498)
@@ -2254,6 +2254,7 @@
     SUBDIR += vdr-plugin-live
     SUBDIR += vdradmin-am
     SUBDIR += vertx
+    SUBDIR += vger
     SUBDIR += vimb
     SUBDIR += visitors
     SUBDIR += volta

Added: head/www/vger/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/vger/Makefile	Mon Mar 15 19:45:11 2021	(r568498)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	vger
+PORTVERSION=	0.0.20210315
+CATEGORIES=	www
+MASTER_SITES=	https://tildegit.org/solene/vger/archive/
+DISTFILES=	365e99400a8a13546c4c060f28e23bf81d68d45e.tar.gz
+
+MAINTAINER=	nc at FreeBSD.org
+COMMENT=	Simplistic and secure Gemini server
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+WRKSRC=		${WRKDIR}/${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME} man/man8/${PORTNAME}.8.gz
+
+do-install:
+	${CP} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
+
+.include <bsd.port.mk>
+

Added: head/www/vger/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/vger/distinfo	Mon Mar 15 19:45:11 2021	(r568498)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1615836143
+SHA256 (365e99400a8a13546c4c060f28e23bf81d68d45e.tar.gz) = 0d1c9564f509c68cbf8408874b33c4e21cb41c9b7cf71d10d229e4ac2f6de860
+SIZE (365e99400a8a13546c4c060f28e23bf81d68d45e.tar.gz) = 12937

Added: head/www/vger/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/vger/pkg-descr	Mon Mar 15 19:45:11 2021	(r568498)
@@ -0,0 +1,8 @@
+Vger is a gemini server supporting chroot, virtualhosts, CGI, default language
+choice, redirections and MIME types detection.
+
+Vger design is relying on inetd and a daemon to take care of TLS. The idea is
+to delegate TLS and network to daemons which proved doing it correctly, so vger
+takes its request from stdin and output the result to stdout.
+
+https://tildegit.org/solene/vger


More information about the svn-ports-head mailing list