mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
Info: creating cache file /wrkdirs/usr/ports/net-im/teamwords/work/TeamWords-0.2.1/.qmake.cache Project ERROR: Unknown module(s) in QT: webkitwidgets I think the port was pulling qt5-webkit via qt5-assistant, and it broke after qt5-assistant dropped the dependency.
36 lines
913 B
Makefile
36 lines
913 B
Makefile
# Created by: Kris Moore <kmoore@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= teamwords
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= kmoore@FreeBSD.org
|
|
COMMENT= Unofficial Qt Slack client
|
|
|
|
LICENSE= LGPL3
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_QT5= core gui network svg linguist \
|
|
webkit buildtools x11extras
|
|
USES= compiler:c++11-lang qmake tar:xz
|
|
|
|
QMAKE_ARGS= CONFIG+="configure"
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= MiT-Ufa
|
|
GH_PROJECT= TeamWords
|
|
PLIST_FILES= bin/teamwords \
|
|
share/applications/teamwords.desktop \
|
|
share/icons/teamwords.png
|
|
SUB_FILES= teamwords.desktop
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/teamwords ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKDIR}/${SUB_FILES} ${STAGEDIR}${PREFIX}/share/applications/
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons
|
|
${INSTALL_DATA} ${WRKSRC}/images/png/Slack.png ${STAGEDIR}${PREFIX}/share/icons/teamwords.png
|
|
|
|
.include <bsd.port.mk>
|