LOCALBASE/bin is in the PATH or not and this is consistent with what other java rc scripts do. prodded by Marc Peters
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.26 2013/03/04 15:56:13 ajacoutot Exp $
|
|
|
|
COMMENT= XMPP real time collaboration server
|
|
DISTNAME= openfire_src_3_7_1
|
|
PKGNAME= openfire-3.7.1
|
|
CATEGORIES= net
|
|
REVISION= 0
|
|
|
|
MASTER_SITES= http://www.igniterealtime.org/downloadServlet?filename=openfire/
|
|
|
|
HOMEPAGE= http://www.igniterealtime.org/projects/openfire/index.jsp
|
|
|
|
# ASL 2.0
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
NO_REGRESS= yes
|
|
|
|
MODULES=java
|
|
MODJAVA_VER = 1.7+
|
|
MODJAVA_JRE = Yes
|
|
MODJAVA_BUILD = ant
|
|
|
|
RUN_DEPENDS = java/javaPathHelper
|
|
|
|
WRKDIST= ${WRKDIR}/openfire_src
|
|
WRKSRC= ${WRKDIST}/build/
|
|
|
|
OPENFIREDEST= ${PREFIX}/openfire
|
|
DATADIRS= lib logs plugins resources
|
|
|
|
pre-install:
|
|
rm -rf ${WRKDIST}/target/openfire/resources/nativeAuth
|
|
mv ${WRKDIST}/target/openfire/resources/security ${WRKBUILD}
|
|
|
|
do-install:
|
|
cd ${WRKDIST}/target/openfire && \
|
|
find ${DATADIRS} -type d \
|
|
-exec ${INSTALL_DATA_DIR} ${OPENFIREDEST}/{} \; && \
|
|
find ${DATADIRS} ! -type d \
|
|
-exec ${INSTALL_DATA} -m 644 {} ${OPENFIREDEST}/{} \;
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/openfire
|
|
${INSTALL_DATA} ${WRKDIST}/documentation/docs/*-guide.html \
|
|
${PREFIX}/share/doc/openfire
|
|
${INSTALL_DATA} ${WRKDIST}/documentation/docs/database.html \
|
|
${PREFIX}/share/doc/openfire
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/openfire/security
|
|
${INSTALL_DATA} ${WRKDIST}/target/openfire/conf/openfire.xml \
|
|
${PREFIX}/share/examples/openfire
|
|
${INSTALL_DATA} ${WRKBUILD}/security/* \
|
|
${PREFIX}/share/examples/openfire/security
|
|
|
|
.include <bsd.port.mk>
|