blob: b0ec65b590bbfe72d9d9b613303461ce07df9dc2 (
plain) (
blame)
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
|
# $FreeBSD$
PORTNAME= libgit2
PORTVERSION= 0.17.0
CATEGORIES= devel
MASTER_SITES= GHC
MAINTAINER= ports@FreeBSD.org
COMMENT= Portable, pure C implementation of the Git core
LICENSE= GPLv2
USE_GITHUB= yes
GH_ACCOUNT= libgit2
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USES= cmake
USE_LDCONFIG= yes
USE_PYTHON_BUILD= yes
MAKE_JOBS_SAFE= yes
PLIST_SUB= SHLIB_VER=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= Does not install on sparc64: thread-local storage not supported
.endif
post-patch:
@${REINPLACE_CMD} -e "s|/pkgconfig|/../libdata/pkgconfig|" ${WRKSRC}/CMakeLists.txt
.include <bsd.port.post.mk>
|