b6ec06f079
Ports 02f27a83b4 fixed the ports tree to the C locale so it would work
correctly in environments where users use a locale that isn't compatible
with the C locale, e.g. xx_YY.UTF-8 where [A-Z] includes more than just
upper case letters. USE_LOCALE was introduced to let ports use another
locale if they needed it. The C.UTF-8 locale was created later on to be
mostly compatible with the C locale.
Switch the ports tree locale to C.UTF-8 and remove USE_LOCALE. The
world has moved to Unicode so all ports either require it or know how to
build correctly in a Unicode environment.
PR: 295945
Exp-run by: antoine
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
PORTNAME= ttmath
|
|
DISTVERSION= 0.9.3.20191013
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= C++ headers-only library for big integer and floating point numbers
|
|
WWW= https://ttmath.org
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
FETCH_DEPENDS= ca_root_nss>0:security/ca_root_nss \
|
|
git:devel/git
|
|
|
|
USES= cmake:testing
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
GIT_URL= https://gitea.ttmath.org/tomasz.sowa/ttmath.git
|
|
GIT_TAG= aad580f51e7ffc32966507a9897ec575c389e3e6
|
|
|
|
do-fetch:
|
|
@if [ "${FORCE_FETCH_ALL}" = "true" ] || ! [ -f "${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}" ]; then \
|
|
${MKDIR} ${DISTDIR}/${DIST_SUBDIR} && \
|
|
cd ${DISTDIR}/${DIST_SUBDIR} && \
|
|
git clone -q ${GIT_URL} ${PORTNAME}-${DISTVERSIONFULL} && \
|
|
(cd ${PORTNAME}-${DISTVERSIONFULL} && git reset -q --hard ${GIT_TAG} && ${RM} -r .git) && \
|
|
${FIND} ${PORTNAME}-${DISTVERSIONFULL} -and -exec ${TOUCH} -h -d 1970-01-01T00:00:00Z {} \; && \
|
|
${FIND} ${PORTNAME}-${DISTVERSIONFULL} -print0 | ${SORT} -z | \
|
|
${TAR} czf ${PORTNAME}-${DISTVERSIONFULL}${EXTRACT_SUFX} --format=ustar --gid 0 --uid 0 --options gzip:!timestamp --no-recursion --null -T - && \
|
|
${RM} -r ${PORTNAME}-${DISTVERSIONFULL}; \
|
|
fi
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} ${PORTNAME} ${STAGEDIR}${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|