summaryrefslogtreecommitdiffstats
path: root/net-im/tox/Makefile
blob: 793df8d6714ee7063d6265e7b4bf3f9d5aedfaf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Created by: Thierry Thomas <thierry@pompo.net>
# $FreeBSD$

PORTNAME=	toxcore
PORTVERSION=	0.151112
PORTREVISION=	2
CATEGORIES=	net-im net-p2p

MAINTAINER=	thierry@FreeBSD.org
COMMENT=	ProjectTox-Core library, a decentralized and secure messenger

LICENSE=	GPLv3

BUILD_DEPENDS=	checkmk:${PORTSDIR}/devel/libcheck
LIB_DEPENDS=	libvpx.so:${PORTSDIR}/multimedia/libvpx		\
		libopus.so:${PORTSDIR}/audio/opus

USE_GITHUB=	yes
GH_ACCOUNT=	irungentoo
GH_TAGNAME=	22634a4

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--enable-tests
USES=		autoreconf compiler:c11 libtool pathfix pkgconfig
USE_LDCONFIG=	yes
PATHFIX_MAKEFILEIN=	Makefile.am
INSTALL_TARGET=		install-strip

OPTIONS_DEFINE=		DAEMON
OPTIONS_RADIO=		CRYPTO
OPTIONS_RADIO_CRYPTO=	SODIUM NACL
OPTIONS_DEFAULT=	SODIUM
OPTIONS_SUB=		yes

SODIUM_DESC=		Prefer libsodium
SODIUM_LIB_DEPENDS=	libsodium.so:${PORTSDIR}/security/libsodium

NACL_DESC=		Prefer NaCl
NACL_CONFIGURE_ENABLE=	nacl
NACL_CONFIGURE_ON=	--with-nacl-libs=${LOCALBASE}/lib
NACL_BUILD_DEPENDS=	${LOCALBASE}/lib/libnacl.a:${PORTSDIR}/security/nacl
NACL_RUN_DEPENDS=	${LOCALBASE}/lib/libnacl.a:${PORTSDIR}/security/nacl

DAEMON_DESC=		Bootstrap daemon
DAEMON_CONFIGURE_ENABLE=daemon
DAEMON_LIB_DEPENDS=	libconfig.so:${PORTSDIR}/devel/libconfig

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MDAEMON}
USERS=	toxdht
USE_RC_SUBR=	tox-bootstrapd
SUB_LIST=	TOXDHT=${USERS}
PLIST_SUB+=	TOXDHT=${USERS}
KEYS_DIR=	/var/lib/tox-bootstrapd
PID_DIR=	/var/run/tox-bootstrapd
PKGMESSAGE=	${PKGDIR}/pkg-message.daemon
.endif

pre-everything::
.if ${PORT_OPTIONS:MNACL}
	@${ECHO_CMD}
	@${ECHO_CMD} "Warning: building toxcore against NaCl is not supported by some clients (e.g. qTox)!"
	@${ECHO_CMD}
.endif

pre-configure:
	${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/configure.ac

post-install:
.if ${PORT_OPTIONS:MDAEMON}
	${INSTALL_DATA} ${WRKSRC}/other/bootstrap_daemon/tox-bootstrapd.conf	\
		${STAGEDIR}${PREFIX}/etc/tox-bootstrapd.conf.sample
	${MKDIR} ${STAGEDIR}${KEYS_DIR}
	${MKDIR} ${STAGEDIR}${PID_DIR}
.endif

.include <bsd.port.mk>
OpenPOWER on IntegriCloud