svn commit: r566124 - in head/irc: . catgirl

Romain Tartière romain at FreeBSD.org
Fri Feb 19 23:53:23 UTC 2021


Author: romain
Date: Fri Feb 19 23:53:21 2021
New Revision: 566124
URL: https://svnweb.freebsd.org/changeset/ports/566124

Log:
  New port: irc/catgirl
  
  catgirl is a TLS-only terminal IRC client with tab-complete, nick
  coloring, URL detection, message filtering and split scrolling.
  
  WWW: https://git.causal.agency/catgirl/
  
  PR:		246818
  Submitted by:	june at causal.agency

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

Modified: head/irc/Makefile
==============================================================================
--- head/irc/Makefile	Fri Feb 19 23:47:53 2021	(r566123)
+++ head/irc/Makefile	Fri Feb 19 23:53:21 2021	(r566124)
@@ -15,6 +15,7 @@
     SUBDIR += bitlbee-steam
     SUBDIR += bnc
     SUBDIR += bopm
+    SUBDIR += catgirl
     SUBDIR += cgiirc
     SUBDIR += ctrlproxy
     SUBDIR += cwirc

Added: head/irc/catgirl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/catgirl/Makefile	Fri Feb 19 23:53:21 2021	(r566124)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	catgirl
+DISTVERSION=	1.6
+CATEGORIES=	irc
+MASTER_SITES=	https://git.causal.agency/catgirl/snapshot/
+
+MAINTAINER=	june at causal.agency
+COMMENT=	TLS-only terminal IRC client
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		ncurses pkgconfig ssl
+
+HAS_CONFIGURE=	yes
+CONFIGURE_ARGS=	--prefix=${PREFIX} --mandir=${MANPREFIX}/man
+
+PLIST_FILES=	bin/catgirl \
+		man/man1/catgirl.1.gz
+
+.include <bsd.port.pre.mk>
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/catgirl
+
+.if ${SSL_DEFAULT} == base || ${SSL_DEFAULT} == openssl
+LIB_DEPENDS+=	libtls.so:security/libretls
+.endif
+
+.include <bsd.port.post.mk>

Added: head/irc/catgirl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/catgirl/distinfo	Fri Feb 19 23:53:21 2021	(r566124)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1613763583
+SHA256 (catgirl-1.6.tar.gz) = 3b32ee3b57cab5fa29b0a6cb9d21a4a5e5f41efd4a698cb9df15e316bf000f6a
+SIZE (catgirl-1.6.tar.gz) = 58524

Added: head/irc/catgirl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/catgirl/pkg-descr	Fri Feb 19 23:53:21 2021	(r566124)
@@ -0,0 +1,4 @@
+catgirl is a TLS-only terminal IRC client with tab-complete, nick
+coloring, URL detection, message filtering and split scrolling.
+
+WWW: https://git.causal.agency/catgirl/


More information about the svn-ports-all mailing list