282a3799a4
Implement logic for querying TBR and TBR frequency to fix build. PR: 239423 Approved by: danfe (maintainer), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D21430
25 lines
612 B
Makefile
25 lines
612 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= abseil
|
|
PORTVERSION= g20190703
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Abseil Common Libraries (C++)
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= cmake compiler:c++11-lang
|
|
USE_GITHUB= yes
|
|
GH_PROJECT= ${PORTNAME}-cpp
|
|
GH_TAGNAME= 74d9175
|
|
|
|
post-install:
|
|
# XXX: should fix CMakeLists.txt instead of removing empty directories
|
|
${RMDIR} ${STAGEDIR}${PREFIX}/include/absl/copts \
|
|
${STAGEDIR}${PREFIX}/include/absl/strings/testdata
|
|
${RM} -r ${STAGEDIR}${PREFIX}/include/absl/time/internal/cctz/testdata
|
|
|
|
.include <bsd.port.mk>
|