1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/devel/cctz/Makefile
Mathieu Arnold e1bfdfbe56 Add DOCS options to ports that should have one.
Also various fixes related to said option.

PR:		230864
Submitted by:	mat
exp-runs by:	antoine
2018-09-10 13:14:50 +00:00

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>