as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
28 lines
567 B
Makefile
28 lines
567 B
Makefile
# Created by: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= snappy
|
|
PORTVERSION= 1.1.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
|
|
MAINTAINER= vanilla@FreeBSD.org
|
|
COMMENT= Fast compressor/decompressor library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= autoreconf compiler:c++11-lang libtool pathfix pkgconfig
|
|
CONFIGURE_ARGS= --disable-gtest
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CFLAGS+= -DNDEBUG
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= google
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libsnappy.so.1.1.6
|
|
|
|
.include <bsd.port.mk>
|