freebsd-ports/math/form/Makefile
Emanuel Haupt 319b2de7f0 */*: Simply future removal of GNU_CONFIGURE_MANPREFIX
Simplify the future removal of GNU_CONFIGURE_MANPREFIX after the
manprefix migration is complete. The current placement of
GNU_CONFIGURE_MANPREFIX will not result in consecutive blank lines or
comments when lines containing GNU_CONFIGURE_MANPREFIX are removed in
batches.

Notified by:	mat
2024-01-21 19:08:41 +01:00

54 lines
1.3 KiB
Makefile

PORTNAME= form
DISTVERSIONPREFIX= v
DISTVERSION= 4.3.1
PORTREVISION= 1
CATEGORIES= math
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Symbolic Manipulation System
WWW= https://www.nikhef.nl/~form/
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libgmp.so:math/gmp
USES= autoreconf gmake localbase
USE_GITHUB= yes
GH_ACCOUNT= vermaseren
GNU_CONFIGURE= yes
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
CONFIGURE_ARGS+= --disable-native \
--enable-largefile \
--enable-scalar \
--with-api=posix
OPTIONS_DEFINE= DOXYGEN OPENMPI
OPTIONS_SUB= yes
MPICC?= ${LOCALBASE}/mpi/openmpi/bin/mpicc
MPICXX?= ${LOCALBASE}/mpi/openmpi/bin/mpic++
DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen
OPENMPI_LIB_DEPENDS= libgcc_s.so.1:lang/gcc9 \
libmpi.so:net/openmpi
OPENMPI_CONFIGURE_ENABLE= parform
OPENMPI_CONFIGURE_ENV+= MPICC="${MPICC}" \
MPICXX="${MPICXX}"
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1400091 || (${OSVERSION} >= 1302507 && \
${OSVERSION} < 1400000))
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif
post-build-DOXYGEN-on:
(cd ${WRKSRC}/doc/manual; ${MAKE_CMD} html pdf)
post-install-DOXYGEN-on:
(cd ${WRKSRC}/doc/manual && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})
${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>