freebsd-ports/www/mnogosearch/Makefile
Konstantin Stroykovskiy 5ac399c458 www/mnogosearch: Fix with mysql-5.7 and above
Variable "storage_engine" is deprecated in mysql-server version 5.6. It is removed from mysql 5.7. New variable is "default_storage_engine".

PR:	ports/269365
2023-03-27 08:57:28 +01:00

98 lines
2.2 KiB
Makefile

PORTNAME= mnogosearch
PORTVERSION= 3.4.1
PORTREVISION= 1
CATEGORIES= www databases
MASTER_SITES= http://www.mnogosearch.org/Download/
MAINTAINER= crees@FreeBSD.org
COMMENT= Full featured SQL-based hypertext search engine
WWW= http://www.mnogosearch.org/
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
CONFLICTS= sphinxsearch udmsearch mguesser
OPTIONS_DEFINE= DOCS EXAMPLES THREADS SSL ASIAN SYSLOG
OPTIONS_MULTI= DATABASE
OPTIONS_MULTI_DATABASE= PGSQL MYSQL SQLITE2 SQLITE3
OPTIONS_DEFAULT= THREADS SSL SYSLOG SQLITE3
ASIAN_DESC= Enable asian charsets
DATABASE_DESC= Database backends
SYSLOG_DESC= Send logs to syslog
SQLITE2_DESC= Use SQLite 2.x
SQLITE3_DESC= Use SQLite 3.x
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USES= cpe gmake libtool
USE_LDCONFIG= yes
CONFIGURE_ARGS= --sysconfdir=${ETCDIR} \
--localstatedir=/var/mnogosearch \
--datadir=${DATADIR}
SUB_FILES+= pkg-message
PGSQL_USES= pgsql
PGSQL_CONFIGURE_WITH= pgsql=${LOCALBASE}
SQLITE2_USES= sqlite:2
SQLITE3_USES= sqlite
SQLITE2_CONFIGURE_ON= --with-sqlite=${LOCALBASE}
SQLITE3_CONFIGURE_ON= --with-sqlite3=${LOCALBASE}
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSSL}
USES+= ssl
.endif
.if ${PORT_OPTIONS:MTHREADS}
CONFIGURE_ARGS+= --enable-pthreads
.else
CONFIGURE_ARGS+= --disable-pthreads
.endif
.if ${PORT_OPTIONS:MSSL}
CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE}
.endif
.if ${PORT_OPTIONS:MASIAN}
CONFIGURE_ARGS+= --with-extra-charsets=all
.endif
.if ! ${PORT_OPTIONS:MSYSLOG}
CONFIGURE_ARGS+= --disable-syslog
.endif
.if ${PORT_OPTIONS:MMYSQL}
USES+= mysql
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
.endif
PORTDATA= *
PORTDOCS= ChangeLog INSTALL README.html
PORTEXAMPLES= README *.conf
post-patch:
.if ${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -e 's#$$(DESTDIR)$$(prefix)/doc#${DOCSDIR}#' \
${WRKSRC}/Makefile.in ${WRKSRC}/doc/Makefile.in
.else
@${REINPLACE_CMD} -e \
's#^SUBDIRS = include src doc#SUBDIRS = include src#' \
${WRKSRC}/Makefile.in
.endif
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS:NREADME.html}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/doc/samples/* ${STAGEDIR}${EXAMPLESDIR}/
.include <bsd.port.mk>