Un-break build on 8.x

PR:		199244
Submitted by:	tkato432@yahoo.com
MFH:		2015Q2
This commit is contained in:
Thomas Zander 2015-04-18 14:07:54 +00:00
parent ff7ce11c27
commit f84bddd9c2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=384228

View File

@ -13,39 +13,40 @@ COMMENT= Yet Another Computer Algebra System
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= DOCS
USES= compiler:c++11-lib libtool
GNU_CONFIGURE= yes
USES= libtool
CONFIGURE_ARGS= --with-html-dir=${DOCSDIR}
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
.include <bsd.port.options.mk>
.if ${ARCH} == "sparc64"
BROKEN= Does not compile with GCC 4.2
.endif
.if ${PORT_OPTIONS:MDOCS}
CONFIGURE_ARGS+=--enable-html-doc --with-html-dir=${DOCSDIR}
PORTDOCS= *
USES+= perl5
USE_PERL5= build
.else
CONFIGURE_ARGS+=--disable-html-doc
OPTIONS_DEFINE= DOCS
DOCS_USES= perl5
DOCS_USE= perl5=build
DOCS_CONFIGURE_ENABLE= html-doc
.include <bsd.port.pre.mk>
.if ${CHOSEN_COMPILER_TYPE} == "gcc"
CPPFLAGS+= -D_GLIBCXX_USE_C99
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|"GNU strip"|"strip"|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/src/yacasmain.cpp
# Can't use USES=shebangfix here, cause the path appears several
# times in the file.
@${REINPLACE_CMD} -e 's| /bin/bash| ${LOCALBASE}/bin/bash|g' \
${WRKSRC}/tests/test-yacas
@${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \
${WRKSRC}/src/yacasmain.cpp
@${REINPLACE_CMD} -e \
's| /bin/bash| ${LOCALBASE}/bin/bash|g' \
${WRKSRC}/tests/test-yacas
regression-test: build
# This requires bash. I don't add it as a dependency to the port, as it's
# not needed for the general use.
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
${MAKEFILE} check ${MAKE_ARGS})
# This requires bash. I don't add it as a dependency to the port, as
# it's not needed for the general use.
@(cd ${WRKSRC} && ${DO_MAKE_BUILD} check)
.include <bsd.port.mk>
.include <bsd.port.post.mk>