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

57 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.10 2018/10/24 14:28:10 sthen Exp $
COMMENT = typesetting system and improved layout engine
V = 0.9.4
PKGNAME = sile-$V
REVISION = 4
SHARED_LIBS += texpdf 0.0 # 0.0
CATEGORIES = print
HOMEPAGE = http://sile-typesetter.org/
# MIT
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += ${COMPILER_LIBCXX} expat fontconfig freetype glib-2.0 graphite2
WANTLIB += harfbuzz iconv icudata icui18n icuio icuuc intl m pcre
WANTLIB += png pthread z ${MODLUA_WANTLIB}
COMPILER = base-clang ports-gcc base-gcc
MASTER_SITES = https://github.com/simoncozens/sile/releases/download/v$V/
MASTER_SITES0 = http://sile-typesetter.org/images/
DISTFILES = sile-$V.tar.bz2 \
sile-$V.pdf:0
EXTRACT_ONLY = sile-$V.tar.bz2
MODULES = lang/lua
MODLUA_VERSION = 5.2
MODLUA_BUILD_DEPENDS += devel/lpeg \
devel/luafs \
textproc/luaexpat
MODLUA_RUN_DEPENDS += devel/lpeg \
devel/luafs \
textproc/luaexpat
LIB_DEPENDS = converters/libiconv \
devel/harfbuzz \
graphics/png \
textproc/icu4c
RUN_DEPENDS = fonts/gentium
CONFIGURE_STYLE = gnu
CONFIGURE_ENV = CPPFLAGS="-I${MODLUA_INCL_DIR} `pkg-config --cflags libpng`" \
LDFLAGS=-L${LOCALBASE}/lib
WRKDIST = ${WRKDIR}/sile-$V
post-install:
rm ${PREFIX}/share/sile/core/font.lua.orig
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sile
${INSTALL_DATA} ${DISTDIR}/sile-$V.pdf ${PREFIX}/share/doc/sile/sile.pdf
.include <bsd.port.mk>