freebsd-ports/devel/pure-stldict/Makefile
Mark Linimon c876cd7640 Fix build on gcc-based architectures:
cc1plus: unrecognized command line option "-std=c++0x"

Approved by:	portmgr (tier-2 blanket)
2019-03-13 04:20:42 +00:00

34 lines
781 B
Makefile

# Created by: Zhihao Yuan <lichray@gmail.com>
# $FreeBSD$
PORTNAME= pure-stldict
PORTVERSION= 0.8
CATEGORIES= devel
MASTER_SITES= https://bitbucket.org/purelang/pure-lang/downloads/
DIST_SUBDIR= pure
MAINTAINER= lichray@gmail.com
COMMENT= Pure interface to C++ STL map/unordered_map
LICENSE= LGPL3+
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
USES= compiler:c++0x pkgconfig pure
CXXFLAGS+= -std=c++0x -DHAVE_STD_IS_PERMUTATION
PORTDOCS= README
PORTEXAMPLES= *
OPTIONS_DEFINE= DOCS EXAMPLES
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
.include <bsd.port.mk>