blob: 1e00b9f59e17941a54a1154915301ba42f19dae0 (
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
|
# Created by: Maxim Ignatenko
# $FreeBSD$
PORTNAME= exmpp
PORTVERSION= 0.9.9
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= devel net-im
PKGNAMEPREFIX= erlang-
MAINTAINER= olgeni@FreeBSD.org
COMMENT= Fast and scalable library for XMPP written in Erlang/OTP
LICENSE= EPL
BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang
RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \
libxml2.so:${PORTSDIR}/textproc/libxml2
USE_GITHUB= yes
GH_ACCOUNT= processone
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--enable-static=yes \
--enable-shared=yes \
--with-erlang=${LOCALBASE} \
--with-expat=${LOCALBASE} \
--with-openssl=${OPENSSLBASE} \
--disable-debug \
--disable-warnings \
--disable-examples \
--enable-escaping-using-cdata
GNU_CONFIGURE_PREFIX= "${PREFIX}/lib/erlang/lib"
PLIST_SUB= VERSION=${PORTVERSION}
USES= autoreconf cpe libtool pkgconfig
CPE_VENDOR= process-one
USE_OPENSSL= yes
DOCS_CONFIGURE_ENABLE= documentation
MAKE_JOBS_UNSAFE= yes
post-configure:
${MAKE_CMD} clean -C ${WRKSRC}
post-install:
.for _file in exmpp_xml_expat_legacy.so exmpp_compress_zlib.so \
exmpp_xml_expat.so exmpp_stringprep.so exmpp_xml_libxml2.so \
exmpp_tls_openssl.so
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/priv/lib/${_file}
.endfor
.include <bsd.port.mk>
|