summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2019-07-28 15:22:55 +0000
committernia <nia@pkgsrc.org>2019-07-28 15:22:55 +0000
commitb60c51bb68343fd6da8af5b0359ad28a264e5bcd (patch)
treee947add947e182db6112c7c16f984edd2132d803 /chat
parent528666712ed1763c7d86bfd613b1def9e07b1f17 (diff)
downloadpkgsrc-b60c51bb68343fd6da8af5b0359ad28a264e5bcd.tar.gz
Add chat/bitlbee-steam.
The Steam protocol plugin for bitlbee. This plugin uses the Steam Mobile API allowing it to run alongside the main Steam client. It is worth noting that the Steam Mobile API is HTTP based, which does lead to mild latency.
Diffstat (limited to 'chat')
-rw-r--r--chat/Makefile3
-rw-r--r--chat/bitlbee-steam/DESCR3
-rw-r--r--chat/bitlbee-steam/Makefile20
-rw-r--r--chat/bitlbee-steam/PLIST2
-rw-r--r--chat/bitlbee-steam/distinfo7
-rw-r--r--chat/bitlbee-steam/patches/patch-configure15
6 files changed, 49 insertions, 1 deletions
diff --git a/chat/Makefile b/chat/Makefile
index 628dfeca0cc..47b8f8cb828 100644
--- a/chat/Makefile
+++ b/chat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.225 2019/07/28 15:21:08 nia Exp $
+# $NetBSD: Makefile,v 1.226 2019/07/28 15:22:55 nia Exp $
#
COMMENT= Communication programs
@@ -11,6 +11,7 @@ SUBDIR+= bitlbee
SUBDIR+= bitlbee-discord
SUBDIR+= bitlbee-facebook
SUBDIR+= bitlbee-mastodon
+SUBDIR+= bitlbee-steam
SUBDIR+= bnc
SUBDIR+= carbons-purple
SUBDIR+= centerim
diff --git a/chat/bitlbee-steam/DESCR b/chat/bitlbee-steam/DESCR
new file mode 100644
index 00000000000..3c4c53f122a
--- /dev/null
+++ b/chat/bitlbee-steam/DESCR
@@ -0,0 +1,3 @@
+The Steam protocol plugin for bitlbee. This plugin uses the Steam Mobile
+API allowing it to run alongside the main Steam client. It is worth noting
+that the Steam Mobile API is HTTP based, which does lead to mild latency.
diff --git a/chat/bitlbee-steam/Makefile b/chat/bitlbee-steam/Makefile
new file mode 100644
index 00000000000..b9d5d1faa9c
--- /dev/null
+++ b/chat/bitlbee-steam/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2019/07/28 15:22:56 nia Exp $
+
+DISTNAME= bitlbee-steam-1.4.2
+CATEGORIES= chat
+MASTER_SITES= ${MASTER_SITE_GITHUB:=bitlbee/}
+GITHUB_PROJECT= bitlbee-steam
+GITHUB_RELEASE= v${PKGVERSION_NOREV}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= https://www.bitlbee.org/
+COMMENT= Steam protocol plugin for BitlBee
+LICENSE= gnu-gpl-v2
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= pkg-config
+USE_LIBTOOL= yes
+
+.include "../../chat/bitlbee/buildlink3.mk"
+.include "../../security/libgcrypt/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/chat/bitlbee-steam/PLIST b/chat/bitlbee-steam/PLIST
new file mode 100644
index 00000000000..772458632e5
--- /dev/null
+++ b/chat/bitlbee-steam/PLIST
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1 2019/07/28 15:22:56 nia Exp $
+lib/bitlbee/steam.la
diff --git a/chat/bitlbee-steam/distinfo b/chat/bitlbee-steam/distinfo
new file mode 100644
index 00000000000..0d274428e7f
--- /dev/null
+++ b/chat/bitlbee-steam/distinfo
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1 2019/07/28 15:22:56 nia Exp $
+
+SHA1 (bitlbee-steam-1.4.2.tar.gz) = b02bc15047855c995db388263bd47574bcd66198
+RMD160 (bitlbee-steam-1.4.2.tar.gz) = c331fd38f3e6629e64301d94dd8693e041d77efb
+SHA512 (bitlbee-steam-1.4.2.tar.gz) = 30f463e4f523a9676c3bfe5a5cde27da6f4f9e4664476f311d089982903f53d1f0d41887344e85922bf833ff37b22f2ffc9022ed5ba34948005729f0f1bd1d9c
+Size (bitlbee-steam-1.4.2.tar.gz) = 375563 bytes
+SHA1 (patch-configure) = dcee1d76e582e7a28077ca59fff8b6174fc03a32
diff --git a/chat/bitlbee-steam/patches/patch-configure b/chat/bitlbee-steam/patches/patch-configure
new file mode 100644
index 00000000000..ad47fe3b866
--- /dev/null
+++ b/chat/bitlbee-steam/patches/patch-configure
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure,v 1.1 2019/07/28 15:22:56 nia Exp $
+
+Use portable test operator.
+
+--- configure.orig 2016-07-30 01:31:53.000000000 +0000
++++ configure
+@@ -12115,7 +12115,7 @@ else
+ fi
+
+
+-if test "x$WARNINGS" == "xyes"; then :
++if test "x$WARNINGS" = "xyes"; then :
+ CFLAGS="$CFLAGS -Wall -Wextra \
+ -Waggregate-return \
+ -Wdeclaration-after-statement \