From owner-svn-ports-head@freebsd.org Fri Nov 8 20:40:04 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 83E0C15F21A; Fri, 8 Nov 2019 20:40:04 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 478sb82xc8z3PWN; Fri, 8 Nov 2019 20:40:04 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 448AA3CAB; Fri, 8 Nov 2019 20:40:04 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA8Ke4ka051221; Fri, 8 Nov 2019 20:40:04 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA8Ke3tL051217; Fri, 8 Nov 2019 20:40:03 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201911082040.xA8Ke3tL051217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Fri, 8 Nov 2019 20:40:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517090 - in head/net-im: . beebeep X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: in head/net-im: . beebeep X-SVN-Commit-Revision: 517090 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Nov 2019 20:40:04 -0000 Author: adridg Date: Fri Nov 8 20:40:03 2019 New Revision: 517090 URL: https://svnweb.freebsd.org/changeset/ports/517090 Log: New port: net-im/beebeep beeBEEP is a secure intra-office (LAN) chat program. It will auto- discover other beeps on the local network. There are snaps and AppImages available for Linux, so it's easy to deploy by a small team in a LAN for local encrypted chat. https://www.beebeep.net/ (Spotted on Twitter from Alan Pope, so I packaged it for FreeBSD) Added: head/net-im/beebeep/ head/net-im/beebeep/Makefile (contents, props changed) head/net-im/beebeep/distinfo (contents, props changed) head/net-im/beebeep/pkg-descr (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Fri Nov 8 20:29:50 2019 (r517089) +++ head/net-im/Makefile Fri Nov 8 20:40:03 2019 (r517090) @@ -4,6 +4,7 @@ COMMENT = Instant messaging SUBDIR += 6cord + SUBDIR += beebeep SUBDIR += centerim SUBDIR += centerim-devel SUBDIR += chattahoochie Added: head/net-im/beebeep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/beebeep/Makefile Fri Nov 8 20:40:03 2019 (r517090) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= beebeep +DISTVERSIONPREFIX=code- +DISTVERSION= 5.8.2 +CATEGORIES= net-im +MASTER_SITES= SF/${PORTNAME}/Sources/ +# Weird SVN-versioned directory in the source zip +WRKSRC= ${WRKDIR}/${PORTNAME}-code-r1352 + +MAINTAINER= adridg@FreeBSD.org +COMMENT= Secure office (Local-area-network) chat + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= compiler:c++17-lang pkgconfig \ + qmake qt:5 zip +USE_QT= core gui multimedia network widgets x11extras \ + buildtools_build linguist_build + +do-install: + ${MKDIR} ${STAGEDIR}${LOCALBASE}/bin ${STAGEDIR}${QT_PLUGINDIR}/ + ${INSTALL_PROGRAM} ${WRKSRC}/test/beebeep ${STAGEDIR}${LOCALBASE}/bin/ + ${INSTALL_LIB} ${WRKSRC}/test/libnumbertextmarker.so ${STAGEDIR}${QT_PLUGINDIR}/ + ${INSTALL_LIB} ${WRKSRC}/test/librainbowtextmarker.so ${STAGEDIR}${QT_PLUGINDIR}/ + ${INSTALL_LIB} ${WRKSRC}/test/libregularboldtextmarker.so ${STAGEDIR}${QT_PLUGINDIR}/ + +PLIST_FILES= bin/beebeep \ + lib/qt5/plugins/libnumbertextmarker.so \ + lib/qt5/plugins/librainbowtextmarker.so \ + lib/qt5/plugins/libregularboldtextmarker.so + +.include Added: head/net-im/beebeep/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/beebeep/distinfo Fri Nov 8 20:40:03 2019 (r517090) @@ -0,0 +1,3 @@ +TIMESTAMP = 1573239811 +SHA256 (beebeep-code-5.8.2.zip) = eec2559d2a1bc232a8256f32b7f976a13fc63343abca1a2425ef346cc5da7a6d +SIZE (beebeep-code-5.8.2.zip) = 7429797 Added: head/net-im/beebeep/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/beebeep/pkg-descr Fri Nov 8 20:40:03 2019 (r517090) @@ -0,0 +1,8 @@ +BeeBEEP is a secure (encryption based on Rijndael Algorithm, AES) +peer to peer office messenger. You can talk and send files with all +your colleagues inside a local area network such of an office, home +or internet cafe without a server. BeeBEEP works also with VPNs. +This serverless application is indispensable in all those places +where privacy and security an essential requirement. + +WWW: https://www.beebeep.net/