blob: fc01b68fce935bbc2683f6ecbd409ec148c943b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
# $FreeBSD$
PORTNAME= googletest
DISTVERSIONPREFIX= release-
DISTVERSION= 1.8.0-50
DISTVERSIONSUFFIX= -g59c795c
CATEGORIES= devel
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Framework for writing C++ tests on a variety of platforms
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= google
USES= autoreconf libtool
WRKSRC_SUBDIR= ${PORTNAME}
GNU_CONFIGURE= yes
# fused-src python tests are only useful for bundling. There's no point in
# running them before installing system-wide without source files.
CONFIGURE_ENV= ac_cv_path_PYTHON=":"
TEST_TARGET= check
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
post-patch:
# enable vendor make install again (revert 661758e)
@${REINPLACE_CMD} -E 's/install-(exec|data)-local/&-dummy/' \
${WRKSRC}/Makefile.am
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/scripts/gtest-config ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
|