On Tue, Mar 29, 2016 at 01:32:47PM -0400, Bryan C. Everly wrote:
> Hi ports@,
>
> For those of you unfamiliar with it, Slack is a commercial software
> development team collaboration tool similar to HipChat from Atlassian.
> TeamWords is an open source native client for it (qt based). Attached is
> my port of it. I've ran portcheck and 'make lib-depends-check' on this
> port and everything comes back clean.
>
> From DESCR:
>
> TeamWords is unofficial cross-platform desktop client for Slack.
> TeamWords is not created by, affiliated with, or supported by Slack
> Technologies, Inc.
You don't need to set DISTNAME, the GH_* bits already take care of it.
WRKDIST is the default, so no need for that either.
You want to lowercase PKGNAME though.
So maybe something like this:
--- /tmp/x11/teamwords/Makefile Tue Mar 29 18:31:27 2016
+++ Makefile Wed Mar 30 11:41:44 2016
@@ -3,8 +3,7 @@
COMMENT = open source native client for slack
VERSION = 0.2.1
-DISTNAME = ${GH_PROJECT}-${VERSION}
-WRKDIST = ${WRKDIR}/${DISTNAME}
+PKGNAME = ${DISTNAME:L}
CATEGORIES = x11
HOMEPAGE = http://snegovikufa.github.io/TeamWords/
Other than that it seems to work fine, OK for me.
Too bad it's just a qt-webkit wrapper and not a real client though...
--
Antoine