View | Details | Raw Unified | Return to bug 245078
Collapse All | Expand All

(-)net-im/Makefile (+1 lines)
Lines 125-130 Link Here
125
    SUBDIR += purple-discord
125
    SUBDIR += purple-discord
126
    SUBDIR += purple-facebook
126
    SUBDIR += purple-facebook
127
    SUBDIR += purple-hangouts
127
    SUBDIR += purple-hangouts
128
    SUBDIR += purple-matrix
128
    SUBDIR += purple-slack
129
    SUBDIR += purple-slack
129
    SUBDIR += py-fbmq
130
    SUBDIR += py-fbmq
130
    SUBDIR += py-matrix-synapse
131
    SUBDIR += py-matrix-synapse
(-)net-im/purple-matrix/Makefile (+33 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	purple-matrix
4
DISTVERSION=	g20191228
5
CATEGORIES=	net-im
6
7
MAINTAINER=	tobias.rehbein@web.de
8
COMMENT=	Libpurple protocol plugin for matrix
9
10
LICENSE=	GPLv2
11
12
LIB_DEPENDS=	libgcrypt.so:security/libgcrypt \
13
		libhttp_parser.so:www/http-parser \
14
		libjson-glib-1.0.so:devel/json-glib \
15
		libolm.so:security/olm \
16
		libpurple.so:net-im/libpurple \
17
		libsqlite3.so:databases/sqlite3
18
19
USES=		gmake gnome pkgconfig
20
USE_GNOME=	glib20
21
USE_LDCONFIG=	yes
22
USE_GITHUB=	yes
23
GH_ACCOUNT=	matrix-org
24
GH_PROJECT=	purple-matrix
25
GH_TAGNAME=	1d23385
26
27
PLIST_FILES=	lib/purple-2/libmatrix.so
28
29
do-install:
30
	${MKDIR} ${STAGEDIR}${PREFIX}/lib/purple-2
31
	${INSTALL_LIB} ${WRKSRC}/libmatrix.so ${STAGEDIR}${PREFIX}/lib/purple-2
32
33
.include <bsd.port.mk>
(-)net-im/purple-matrix/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1585173033
2
SHA256 (matrix-org-purple-matrix-g20191228-1d23385_GH0.tar.gz) = 17c547e174ffb2c75397b25710084a2c187296626c879a9799f38f2b430cfeef
3
SIZE (matrix-org-purple-matrix-g20191228-1d23385_GH0.tar.gz) = 64786
(-)net-im/purple-matrix/files/patch-Makefile (+9 lines)
Line 0 Link Here
1
--- Makefile.orig	2020-03-25 22:24:45 UTC
2
+++ Makefile
3
@@ -1,6 +1,5 @@
4
 #!/usr/bin/make -f
5
 
6
-CC=gcc
7
 LIBS=purple json-glib-1.0 glib-2.0 sqlite3
8
 
9
 PKG_CONFIG=pkg-config
(-)net-im/purple-matrix/pkg-descr (+8 lines)
Line 0 Link Here
1
purple-matrix is a plugin for libpurple which adds the ability to communicate
2
with matrix.org homeservers to any libpurple-based clients (such as Pidgin).
3
4
This project is somewhat alpha, and only basic functionality has been
5
implemented. Sending and receiving simple text messages is supported, as is
6
joining rooms you are invited to by other users.
7
8
WWW: https://github.com/matrix-org/purple-matrix

Return to bug 245078