mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
62 lines
1.8 KiB
Makefile
62 lines
1.8 KiB
Makefile
# Created by: Linh Pham <question+fbsdports@closedsrc.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= base
|
|
PORTVERSION= 1.4.5
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/secureideas/BASE/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Basic Analysis and Security Engine - analyzing Snort alerts
|
|
|
|
RUN_DEPENDS= ${ADODB_DIR}/adodb.inc.php:${PORTSDIR}/databases/adodb5 \
|
|
${LOCALBASE}/share/pear/Image/Graph.php:${PORTSDIR}/graphics/pear-Image_Graph \
|
|
${LOCALBASE}/share/pear/Mail.php:${PORTSDIR}/mail/pear-Mail \
|
|
${LOCALBASE}/share/pear/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime
|
|
|
|
USE_PHP= gd gettext pcre session zlib ctype
|
|
|
|
ADODB_DIR= ${LOCALBASE}/share/adodb
|
|
|
|
SUB_FILES= pkg-message
|
|
DOCS= docs/CHANGELOG docs/CREDITS docs/README docs/README.mssql \
|
|
docs/TODO docs/UPGRADE docs/GPL docs/base_faq.rtf
|
|
|
|
OPTIONS_DEFINE= MYSQL PGSQL PDF DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
USE_PHP+= mysql
|
|
.endif
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
USE_PHP+= pgsql
|
|
.endif
|
|
.if ${PORT_OPTIONS:MPDF}
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/fpdf/fpdf.php:${PORTSDIR}/print/fpdf
|
|
.endif
|
|
|
|
do-build:
|
|
@${REINPLACE_CMD} -e 's,DBlib_path = "",DBlib_path = "${ADODB_DIR}",' \
|
|
${WRKSRC}/base_conf.php.dist
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/www/base/includes/templates/default
|
|
${INSTALL_DATA} ${WRKSRC}/*.php ${WRKSRC}/*.dist ${STAGEDIR}${PREFIX}/www/base
|
|
.for dir in admin help includes languages setup
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/www/base/${dir}
|
|
${INSTALL_DATA} ${WRKSRC}/${dir}/*.php ${STAGEDIR}${PREFIX}/www/base/${dir}
|
|
.endfor
|
|
.for dir in images sql styles
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/www/base/${dir}
|
|
${INSTALL_DATA} ${WRKSRC}/${dir}/* ${STAGEDIR}${PREFIX}/www/base/${dir}
|
|
.endfor
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|