net-im/prosody: Document SSL requirement and rework port makefile

This makefile had both <pre> and <options> but only the <options>
include was necesssary so the <pre> and <post> includes were remoed.
Most of the variables conventionally introduced before the <options>
include were wrapped and moved up to ensure they were defined when
needed.  Finally SSL flags were added to support non-base SSL linkage.

Approved by:	SSL blanket + general blankets
This commit is contained in:
John Marino 2016-09-12 03:01:44 +00:00
parent 8dfabd5d2a
commit eeb3a60339
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=421901

View File

@ -20,37 +20,43 @@ RUN_DEPENDS= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket \
LIB_DEPENDS= libidn.so:dns/libidn
USES= cpe gmake lua:51 shebangfix ssl
SHEBANG_FILES= prosody prosodyctl
LUA_PREMK= yes
HAS_CONFIGURE= yes
CFLAGS+= -I${OPENSSLINC}
LDFLAGS+= -L${OPENSSLLIB}
CONFIGURE_ARGS= --ostype=freebsd \
--c-compiler="${CC}" \
--linker="${CC}" \
--with-lua-include="${LUA_INCDIR}"
CONFIGURE_ENV= LOCALBASE="${LOCALBASE}" \
PREFIX="${PREFIX}" \
LUA_SUFFIX="-${LUA_VER}" \
LUA_LIBDIR="${LUA_LIBDIR}" \
LUA_INCDIR="${LUA_INCDIR}"
USERS= prosody
GROUPS= ${USERS}
USE_RC_SUBR= prosody
SUB_FILES= pkg-deinstall
SUB_LIST= USERS=${USERS} GROUPS=${GROUPS}
PLIST_SUB= PROSODY_USER=${USERS} PROSODY_GROUP=${GROUPS}
OPTIONS_DEFINE= LUAJIT
LUAJIT_DESC= Run prosody using luajit
LUAJIT_DESC= Run prosody using luajit
LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit
.include <bsd.port.options.mk>
USES= cpe gmake lua:51 shebangfix
SHEBANG_FILES= prosody prosodyctl
.if ${PORT_OPTIONS:MLUAJIT}
lua_CMD= ${LOCALBASE}/bin/luajit
.else
lua_CMD= ${LOCALBASE}/bin/${LUA_CMD}
.endif
LUA_PREMK= yes
.include <bsd.port.pre.mk>
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --ostype=freebsd --c-compiler="${CC}" --linker="${CC}" --with-lua-include="${LUA_INCDIR}"
CONFIGURE_ENV+= LOCALBASE="${LOCALBASE}" PREFIX="${PREFIX}" LUA_SUFFIX="-${LUA_VER}" LUA_LIBDIR="${LUA_LIBDIR}" LUA_INCDIR="${LUA_INCDIR}"
SUB_FILES= pkg-deinstall
SUB_LIST= USERS=${USERS} GROUPS=${GROUPS}
PLIST_SUB= PROSODY_USER=${USERS} PROSODY_GROUP=${GROUPS}
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/prosody/util/*.so
.include <bsd.port.post.mk>
.include <bsd.port.mk>