diff options
Diffstat (limited to 'devel/libgit2/Makefile')
-rw-r--r-- | devel/libgit2/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/devel/libgit2/Makefile b/devel/libgit2/Makefile index cc22f902a1bf..6a35bfe454ea 100644 --- a/devel/libgit2/Makefile +++ b/devel/libgit2/Makefile @@ -1,28 +1,32 @@ -# Also update devel/libgit2-glib, devel/rubygem-rugged, devel/py-pygit2 +# Also update devel/libgit2-glib, devel/py-pygit2 # Make sure you bump revision of depending ports, if SONAME changes # objdump -p libgit2.so |grep SONAME # Tools/scripts/search_lib_depends_and_bump.sh devel/libgit2 PORTNAME= libgit2 DISTVERSIONPREFIX= v -DISTVERSION= 1.9.0 +DISTVERSION= 1.9.1 CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org COMMENT= Portable, pure C implementation of the Git core -WWW= https://libgit2.github.com/ +WWW= https://libgit2.org \ + https://libgit2.github.com/ LICENSE= GPLv2 LIB_DEPENDS= libpcre2-8.so:devel/pcre2 \ - libhttp_parser.so:www/http-parser + libllhttp.so:www/llhttp -USES= cmake:testing cpe localbase pkgconfig python:build ssl +USES= cmake:testing cpe localbase:ldflags pathfix pkgconfig \ + python:test ssl +PATHFIX_CMAKELISTSTXT= PkgBuildConfig.cmake USE_GITHUB= yes USE_LDCONFIG= yes -CMAKE_ARGS= -DREGEX_BACKEND=pcre2 -DUSE_HTTP_PARSER=system \ - -DCMAKE_CTEST_ARGUMENTS="-E;'invasive|online'" \ +CMAKE_ARGS= -DREGEX_BACKEND=pcre2 \ + -DUSE_HTTP_PARSER=llhttp \ + -DCMAKE_CTEST_ARGUMENTS="-E;'online|gitdaemon|ssh|proxy|auth_clone'" \ -DOPENSSL_ROOT_DIR=${OPENSSLBASE} \ -DOPENSSL_ENGINES_DIR=${ENGINESDIR} |