f982995f2b
ok jasper@ sthen@
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.13 2011/06/02 13:41:40 ajacoutot Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= communications server for Jabber/XMPP written in Lua
|
|
DISTNAME= prosody-0.7.0
|
|
REVISION= 4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://prosody.im/downloads/source/
|
|
|
|
HOMEPAGE= http://prosody.im/
|
|
|
|
MAINTAINER= Jolan Luff <jolan@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
USE_GROFF = Yes
|
|
MODULES= lang/lua
|
|
LIB_DEPENDS= devel/libidn \
|
|
lang/lua
|
|
RUN_DEPENDS+= archivers/luazlib \
|
|
devel/luaevent \
|
|
devel/luafs \
|
|
security/luasec \
|
|
textproc/luaexpat
|
|
WANTLIB+= crypto idn lua
|
|
|
|
CONFIGURE_STYLE=simple
|
|
CONFIGURE_ARGS+=--prefix="${PREFIX}" \
|
|
--sysconfdir="${SYSCONFDIR}/prosody" \
|
|
--datadir="/var/prosody" \
|
|
--with-lua="${LOCALBASE}" \
|
|
--c-compiler="${CC}" \
|
|
--linker="${CC}" \
|
|
--cflags="${CFLAGS} -fPIC"
|
|
|
|
FAKE_FLAGS+= CONFIG=${DESTDIR}${PREFIX}/share/examples/prosody
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/prosody
|
|
${INSTALL_DATA} ${WRKSRC}/README \
|
|
${PREFIX}/share/doc/prosody
|
|
touch ${PREFIX}/share/examples/prosody/prosody.log
|
|
|
|
.include <bsd.port.mk>
|