mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
f430793a7b
In file included from Algorithm.cc:4: In file included from ../src/include/Hapy/Algorithm.h:6: In file included from ../src/include/Hapy/Result.h:7: In file included from ../src/include/Hapy/Pree.h:9: In file included from ../src/include/Hapy/PreeKids.h:7: ../src/include/Hapy/Iterator.h:22:10: error: no template named 'bidirectional_iterator' in namespace 'std'; did you mean 'std_bidirectional_iterator'? public std::bidirectional_iterator<ValueT, DiffT> { ^~~~~~~~~~~~~~~~~~~~~~~~~~~ std_bidirectional_iterator etc. http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/hapy-0.0.8_1.log PR: 230907 Submitted by: tobik Approved by: Alex Rousskov <rousskov@measurement-factory.com> (maintainer)
28 lines
582 B
Makefile
28 lines
582 B
Makefile
# Created by: rousskov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hapy
|
|
PORTVERSION= 0.0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF
|
|
DISTNAME= Hapy-${PORTVERSION}
|
|
|
|
MAINTAINER= rousskov@measurement-factory.com
|
|
COMMENT= Runtime parser generator
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USES= libtool
|
|
USE_CXXSTD= c++98
|
|
|
|
post-build:
|
|
@${ECHO_MSG} "Consider running 'make check' before 'make install'"
|
|
@${ECHO_MSG} "to execute a library self-test"
|
|
|
|
check: build
|
|
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
|
|
${MAKEFILE} ${MAKE_ARGS} check)
|
|
|
|
.include <bsd.port.mk>
|