mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
1bb7758bfd
In file included from settingswriter.cpp:28: In file included from ./settingswriter.h:31: In file included from ../include/cxxtools/char.h:32: In file included from /usr/include/c++/v1/string:477: /usr/include/c++/v1/string_view:211:5: error: static_assert failed due to requirement 'is_pod<value_type>::value' "Character type of basic_string_view must be a POD" static_assert(is_pod<value_type>::value, "Character type of basic_string_view must be a POD"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ settingswriter.cpp:42:21: note: in instantiation of template class 'std::__1::basic_string_view<cxxtools::Char, std::__1::char_traits<cxxtools::Char> >' requested here *_os << std::endl; ^ Reported by: pkg-fallout
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
# Created by: Juergen Lock <nox@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cxxtools
|
|
PORTVERSION= 2.2.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.tntnet.org/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Collection of general-purpose C++ classes
|
|
|
|
LICENSE= LGPL21+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_aarch64= does not configure: error: check for atomictype failed
|
|
BROKEN_mips= does not configure: in section .data.rel.ro of csvdeserializer-test.o: defined in discarded section
|
|
BROKEN_mips64= does not configure: in section .data.rel.ro of csvdeserializer-test.o: defined in discarded section
|
|
BROKEN_sparc64= does not configure
|
|
|
|
USES= cpe iconv libtool localbase pathfix
|
|
CPE_VENDOR= tntnet
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64
|
|
PLIST_SUB+= X86_64_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_64_ONLY="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == i386
|
|
PLIST_SUB+= I386_ONLY=""
|
|
.else
|
|
PLIST_SUB+= I386_ONLY="@comment "
|
|
.endif
|
|
|
|
.if (${ARCH} == amd64) || (${ARCH} == i386)
|
|
PLIST_SUB+= X86_ONLY=""
|
|
.else
|
|
PLIST_SUB+= X86_ONLY="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == arm || ${ARCH} == armv6 || ${ARCH} == armv7
|
|
PLIST_SUB+= ARM_ONLY=""
|
|
.else
|
|
PLIST_SUB+= ARM_ONLY="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == mips || ${ARCH} == mips64
|
|
PLIST_SUB+= MIPS_ONLY=""
|
|
.else
|
|
PLIST_SUB+= MIPS_ONLY="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == powerpc || ${ARCH} == powerpc64
|
|
PLIST_SUB+= PPC_ONLY=""
|
|
.else
|
|
PLIST_SUB+= PPC_ONLY="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|