openbsd-ports/textproc/sphinx/Makefile
sthen 25f0e460f2 Add COMPILER lines to c++ ports which currently use the default. Adjust
some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.

This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -

- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.

- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.

devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
2018-10-24 14:27:57 +00:00

70 lines
1.7 KiB
Makefile

# $OpenBSD: Makefile,v 1.26 2018/10/24 14:28:11 sthen Exp $
COMMENT = free open-source SQL full-text search engine
BROKEN-hppa = internal compiler error: internal consistency failure
# Note: this is not Sphinx (the Python documentation generator) -
# see also textproc/py-sphinx.
VERSION = 2.2.9
DISTNAME = sphinx-${VERSION}-release
PKGNAME = sphinx-${VERSION}
CATEGORIES = textproc
REVISION = 1
HOMEPAGE = http://www.sphinxsearch.com/
# GPLv2+
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = c expat iconv m pthread ${COMPILER_LIBCXX} z
COMPILER = base-clang ports-gcc base-gcc
MASTER_SITES = ${HOMEPAGE}/files/
MODULES = lang/php
MODPHP_BUILDDEP = No
MODPHP_RUNDEP = No
LIB_DEPENDS = converters/libiconv
LOCALSTATEDIR = ${BASELOCALSTATEDIR}/sphinx
CONFIGURE_ARGS = --with-unixodbc=no
CONFIGURE_STYLE = gnu
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
ac_cv_header_execinfo_h=no
# checks for execinfo header but not libexecinfo for backtrace* functions,
# so it's not used anyway
FLAVORS = pgsql
FLAVOR ?=
.if ${FLAVOR:Mpgsql}
CONFIGURE_ARGS += --with-pgsql \
--without-mysql
LIB_DEPENDS += databases/postgresql
WANTLIB += pq
.else
CONFIGURE_ARGS += --with-mysql
LIB_DEPENDS += databases/mariadb
WANTLIB += crypto ssl mysqlclient
.endif
# Needs php with mysqli setup and mariadb listening on 127.0.0.1.
TEST_IS_INTERACTIVE = Yes
TEST_DEPENDS = lang/php/${MODPHP_VERSION},-mysql \
lang/php/${MODPHP_VERSION},-mysqli \
databases/mariadb,-server
MAKE_ENV = MODPHP_BIN=${MODPHP_BIN}
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sphinx
${INSTALL_DATA} ${WRKSRC}/doc/sphinx.txt ${PREFIX}/share/doc/sphinx
.include <bsd.port.mk>