1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/net-im/beebeep/Makefile
Adriaan de Groot b438f1decd 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)
2019-11-08 20:40:03 +00:00

35 lines
1.1 KiB
Makefile

# $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 <bsd.port.mk>