Index: head/devel/cctz/Makefile =================================================================== --- head/devel/cctz/Makefile (revision 436205) +++ head/devel/cctz/Makefile (revision 436206) @@ -1,29 +1,30 @@ # $FreeBSD$ PORTNAME= cctz PORTVERSION= 2.0 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 GH_ACCOUNT= google USE_GITHUB= yes USES= compiler:c++11-lib gmake MAKE_ARGS+= CXX=${CXX} \ EXTRA_CPPFLAGS="-D_POSIX_C_SOURCE=201112L -D_XOPEN_SOURCE=600" PLIST_FILES= include/civil_time.h \ include/civil_time_detail.h \ include/time_zone.h lib/libcctz.a PORTDOCS= README.md post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Index: head/devel/cctz/pkg-descr =================================================================== --- head/devel/cctz/pkg-descr (revision 436205) +++ head/devel/cctz/pkg-descr (revision 436206) @@ -1,16 +1,16 @@ CCTZ contains two libraries that cooperate with to give C++ programmers all the necessary tools for computing with dates, times, and time zones in a simple and correct manner. The libraries in CCTZ are: _ The Civil-Time Library - This is a header-only library that supports computing with human-scale time, such as dates (which are represented by the cctz::civil_day class). This library is declared in civil_time.h. _ The Time-Zone Library - This library uses the IANA time zone database that is installed on the system to convert between _absolute time_ and _civil time_. This library is declared in time_zone.h. -WWW: http://github.com/google/cctz +WWW: https://github.com/google/cctz