mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
e1bfdfbe56
Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine
39 lines
838 B
Makefile
39 lines
838 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cctz
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= z7dr6ut7gs@snkmail.com
|
|
COMMENT= C++ library for handling dates, times, and time zones
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BROKEN_powerpc64= fails to compile: time_tool.cc: 'stoll' is not a member of 'std'
|
|
|
|
USES= compiler:c++11-lib gmake
|
|
GH_ACCOUNT= google
|
|
USE_GITHUB= yes
|
|
|
|
MAKE_ARGS+= CXX=${CXX} \
|
|
EXTRA_CPPFLAGS="-D_POSIX_C_SOURCE=201112L -D_XOPEN_SOURCE=600"
|
|
|
|
PLIST_FILES= include/cctz/civil_time.h \
|
|
include/cctz/civil_time_detail.h \
|
|
include/cctz/time_zone.h \
|
|
include/cctz/zone_info_source.h \
|
|
lib/libcctz.a
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|