e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
34 lines
942 B
Makefile
34 lines
942 B
Makefile
# Created by: Janni <jannisan@t-online.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Atlas
|
|
PORTVERSION= 0.6.3
|
|
PORTREVISION= 6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/worldforge/${PORTNAME}-C%2B%2B%20%28protocol%20lib%29/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-C++-${PORTVERSION:S/.r/rc/}
|
|
|
|
MAINTAINER= oliver@FreeBSD.org
|
|
COMMENT= C++ reference implementation of the Atlas protocol
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PKGNAMESUFFIX= -devel
|
|
GNU_CONFIGURE= yes
|
|
USES= libtool pathfix compiler:c++11-lib tar:bzip2
|
|
USE_LDCONFIG= YES
|
|
MAKE_ARGS= docdir=${DOCSDIR}
|
|
CONFIGURE_ARGS+=--program-transform-name=
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^static const bool debug_flag = false;$$||' \
|
|
${WRKSRC}/Atlas/Message/DecoderBase.cpp \
|
|
${WRKSRC}/Atlas/Codecs/Bach.cpp
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docfile in README COPYING AUTHORS THANKS NEWS ChangeLog TODO HACKING ROADMAP
|
|
${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|