mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
a1993564e0
Ports using USES=php:phpize, php:ext, php:zend, and php:pecl are now flavored. They will automatically get flavors (php56, php70, php71, php72) depending of the versions they support (set with IGNORE_WITH_PHP). As a consequence, ports using USES=pear and USES=horde are also flavored. PR: 226242 Submitted by: mat Exp-run by: antoine Approved by: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14208
57 lines
1.7 KiB
Makefile
57 lines
1.7 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= ports@FreeBSD.org
|
|
COMMENT= Basic Analysis and Security Engine - analyzing Snort alerts
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/docs/GPL
|
|
|
|
RUN_DEPENDS= ${ADODB_DIR}/adodb.inc.php:databases/adodb5 \
|
|
${LOCALBASE}/share/pear/Image/Graph.php:graphics/pear-Image_Graph@${PHP_FLAVOR} \
|
|
${LOCALBASE}/share/pear/Mail.php:mail/pear-Mail@${PHP_FLAVOR} \
|
|
${LOCALBASE}/share/pear/Mail/mime.php:mail/pear-Mail_Mime@${PHP_FLAVOR}
|
|
|
|
USE_PHP= gd gettext pcre session zlib ctype
|
|
|
|
ADODB_DIR= ${LOCALBASE}/share/adodb
|
|
|
|
NO_ARCH= yes
|
|
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
|
|
|
|
MYSQL_USE= MYSQL=yes PHP=mysql
|
|
PGSQL_USES= pgsql
|
|
PGSQL_USE= PHP=pgsql
|
|
PDF_RUN_DEPENDS=${LOCALBASE}/share/fpdf/fpdf.php:print/fpdf
|
|
|
|
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
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|