diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2020-01-15 15:52:53 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2020-01-15 15:52:53 +0000 |
commit | 31a8cd50a1abafb9980409262c317a43f5895cf2 (patch) | |
tree | 2fab3d788ae5efd805d41e761577cffa76b089bf /security/libgpg-error | |
parent | Unbreak after r523104 (diff) |
security/libgpg-error: drop gmake, MAKE_JOBS_UNSAFE, add "make test"
- Remove gmake dependency
- Remove MAKE_JOBS_UNSAFE
- Add "make test" functionality
Submitted by: Daniel Engberg
Differential Revision: https://reviews.freebsd.org/D23134
Notes
Notes:
svn path=/head/; revision=523119
Diffstat (limited to 'security/libgpg-error')
-rw-r--r-- | security/libgpg-error/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/libgpg-error/Makefile b/security/libgpg-error/Makefile index 52e72491ae0c..b87c1c054975 100644 --- a/security/libgpg-error/Makefile +++ b/security/libgpg-error/Makefile @@ -14,24 +14,26 @@ LICENSE_COMB= multi LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB -USES= gmake libtool tar:bzip2 +USES= libtool tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes CPP+= -P CONFIGURE_ARGS= --enable-static=yes INSTALL_TARGET= install-strip DOCS= AUTHORS ChangeLog NEWS README INFO= gpgrt -OPTIONS_DEFINE= DOCS NLS +OPTIONS_DEFINE= DOCS NLS TEST OPTIONS_SUB= yes NLS_CONFIGURE_OFF= --disable-nls NLS_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG} --with-libintl-prefix=${LOCALBASE} NLS_USES= gettext iconv +TEST_CONFIGURE_ENABLE= tests +TEST_TARGET= check + post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} |