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.
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.84 2018/10/24 14:27:59 sthen Exp $
|
|
|
|
COMMENT= send/receive faxes and share modems
|
|
DISTNAME= hylafax-6.0.6
|
|
REVISION = 13
|
|
CATEGORIES= comms
|
|
|
|
HOMEPAGE= http://www.HylaFAX.org/
|
|
|
|
MASTER_SITES= http://ftp.hylafax.org/source/ \
|
|
ftp://ftp.hylafax.org/source/ \
|
|
ftp://ftp.ntua.gr/pub/net/hylafax/source/ \
|
|
http://mirror.aarnet.edu.au/pub/hylafax/source/
|
|
|
|
# License: BSD
|
|
# http://www.hylafax.org/HylaFAQ/copyright.html
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
FLAVORS= a4
|
|
FLAVOR?=
|
|
|
|
WANTLIB= c iconv intl jbig m ${COMPILER_LIBCXX} tiff util z
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
BUILD_DEPENDS= print/ghostscript/gnu
|
|
RUN_DEPENDS= print/ghostscript/gnu \
|
|
mail/metamail
|
|
LIB_DEPENDS= graphics/jbigkit \
|
|
graphics/tiff
|
|
|
|
CONFIGURE_STYLE= simple
|
|
USE_GMAKE= Yes
|
|
|
|
CONFIGURE_ARGS= --nointeractive \
|
|
--disable-pam \
|
|
--disable-nls \
|
|
--with-CC="${CC}" \
|
|
--with-CXX="${CXX}" \
|
|
--with-INSTALL="" \
|
|
--with-OPTIMIZER=""
|
|
|
|
CONFIGURE_ENV+= CCOMPILER="${CC}" CXXCOMPILER="${CXX}" \
|
|
GCOPTS="${CFLAGS}" GCXXOPTS="${CXXFLAGS}" \
|
|
PREFIX="${PREFIX}" LOCALBASE="${LOCALBASE}" \
|
|
DIR_LIBDATA=${TRUEPREFIX}/libdata/hylafax/etc \
|
|
INETDCONF=/etc/inetd.conf MKFIFO=/sbin/mkfifo \
|
|
SCRIPT_SH=/bin/ksh
|
|
|
|
.if ${FLAVOR:Ma4}
|
|
CONFIGURE_ARGS+= --with-PAGESIZE=A4
|
|
.endif
|
|
|
|
.include <bsd.port.arch.mk>
|
|
.if ${PROPERTIES:Mclang}
|
|
CXXFLAGS += -std=c++03
|
|
.endif
|
|
|
|
FAKE_FLAGS= ROOT=${WRKINST} SPOOL=${PREFIX}/libdata/hylafax
|
|
|
|
NO_TEST= Yes
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
echo "FontMap: ${LOCALBASE}/share/fonts/ghostscript" >${PREFIX}/libdata/hylafax/etc/hyla.conf
|
|
|
|
.include <bsd.port.mk>
|