freebsd-ports/devel/protobuf/Makefile
Po-Chuan Hsieh 05e7a8b8e1
devel/protobuf: Update to 3.21.7
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
2022-10-09 23:37:51 +08:00

44 lines
1.2 KiB
Makefile

PORTNAME= protobuf
PORTVERSION= 3.21.7
DISTVERSIONPREFIX= cpp-
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= https://github.com/protocolbuffers/protobuf/releases/download/v${PORTVERSION:R:E}.${PORTVERSION:E}/
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Data interchange format library
WWW= https://github.com/protocolbuffers/protobuf
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_sparc64= fails to compile: no atomic ops available
TEST_DEPENDS= googletest>=0:devel/googletest
USES= compiler:c++11-lang cpe libtool localbase pathfix pkgconfig
CFLAGS+= -D_THREAD_SAFE -DGOOGLE_PROTOBUF_NO_RTTI -I${WRKSRC}/src
CONFIGURE_ENV= CC_FOR_BUILD="${CC}" \
CFLAGS_FOR_BUILD="${CFLAGS}" \
CPPFLAGS_FOR_BUILD="${CPPFLAGS}" \
CXX_FOR_BUILD="${CXX}" \
CXXFLAGS_FOR_BUILD="${CXXFLAGS}" \
LDFLAGS_FOR_BUILD="${LDFLAGS}"
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
TEST_ARGS= ${MAKE_ARGS} ${_MAKE_JOBS}
TEST_TARGET= check
USE_CXXSTD= c++11
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
CPE_VENDOR= google
post-patch:
@${REINPLACE_CMD} -e 's|^check-local:|disabled-&|' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -Ee 's,[^ ]*lib(gtest|gmock.*)\.la,-l\1,' ${WRKSRC}/src/Makefile.in
.include <bsd.port.mk>