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

49 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.21 2018/10/24 14:28:09 sthen Exp $
COMMENT = POCO C++ libraries for network based applications
VERSION = 1.4.6p1
DISTNAME = poco-${VERSION}-all
PKGNAME = poco-${VERSION:S/p/pl/}
REVISION = 4
CATEGORIES = net devel
SHLIB_VERSION = 1.0
.for _lib in PocoDataMySQL PocoNetSSL PocoDataODBC PocoDataSQLite PocoZip \
PocoCrypto PocoData PocoFoundation PocoNet PocoUtil PocoXML
SHARED_LIBS += ${_lib} ${SHLIB_VERSION}
.endfor
HOMEPAGE = http://pocoproject.org/
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=poco/}
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
# Boost software license
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c crypto m pthread ssl ${COMPILER_LIBCXX} iodbc iodbcinst mysqlclient
WANTLIB += expat pcre sqlite3 z
COMPILER = base-clang ports-gcc base-gcc
LIB_DEPENDS = databases/iodbc \
databases/mariadb \
databases/sqlite3 \
devel/pcre
USE_GMAKE = Yes
SEPARATE_BUILD = Yes
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --config=OpenBSD --no-tests --no-samples \
--unbundled --include-path=${LOCALBASE}/include \
--library-path=${LOCALBASE}/lib
MAKE_FLAGS = ODBCLIBDIR=${LOCALBASE}/lib
MAKE_ENV += CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
TEST_TARGET = tests
pre-configure:
cp ${FILESDIR}/OpenBSD ${WRKSRC}/build/config/
echo ${SHLIB_VERSION} > ${WRKSRC}/libversion
.include <bsd.port.mk>