View | Details | Raw Unified | Return to bug 196176 | Differences between
and this patch

Collapse All | Expand All

(-)libgit2/Makefile (-5 / +9 lines)
Lines 1-32 Link Here
1
# $FreeBSD: head/devel/libgit2/Makefile 369517 2014-09-29 14:09:10Z wg $
1
# $FreeBSD: head/devel/libgit2/Makefile 369517 2014-09-29 14:09:10Z wg $
2
2
3
PORTNAME=	libgit2
3
PORTNAME=	libgit2
4
PORTVERSION=	0.21.1
4
PORTVERSION=	0.21.3
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
6
7
MAINTAINER=	wg@FreeBSD.org
7
MAINTAINER=	wg@FreeBSD.org
8
COMMENT=	Portable, pure C implementation of the Git core
8
COMMENT=	Portable, pure C implementation of the Git core
9
9
10
LICENSE=	GPLv2
10
LICENSE=	GPLv2
11
LICENSE_FILE=	${WRKSRC}/COPYING
11
12
12
USE_GITHUB=	yes
13
USE_GITHUB=	yes
13
GH_ACCOUNT=	libgit2
14
GH_ACCOUNT=	libgit2
14
GH_TAGNAME=	v${PORTVERSION}
15
GH_TAGNAME=	v${PORTVERSION}
15
GH_COMMIT=	b4d00c1
16
GH_COMMIT=	e476e7b
16
17
17
USES=		cmake python:build
18
USES=		cmake python:build
18
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
19
USE_OPENSSL=	yes
20
USE_OPENSSL=	yes
20
21
21
PLIST_SUB=	SHLIB_VER=${PORTVERSION:R:E}
22
PLIST_SUB=	PORTVERSION=${PORTVERSION} SHLIB_VER=${PORTVERSION:R:E}
22
23
23
OPTIONS_DEFINE=	SSH
24
OPTIONS_DEFINE=	SSH THREADSAFE
24
OPTIONS_DEFAULT=SSH
25
OPTIONS_DEFAULT=SSH THREADSAFE
25
SSH_DESC=	Enable SSH support through libssh2
26
SSH_DESC=	Enable SSH support through libssh2
27
THREADSAFE_DESC=	Build ${PORTNAME} as threadsafe
26
28
27
SSH_LIB_DEPENDS=	libssh2.so:${PORTSDIR}/security/libssh2
29
SSH_LIB_DEPENDS=	libssh2.so:${PORTSDIR}/security/libssh2
28
SSH_CMAKE_ON=		-DUSE_SSH=ON
30
SSH_CMAKE_ON=		-DUSE_SSH=ON
29
SSH_CMAKE_OFF=		-DUSE_SSH=OFF
31
SSH_CMAKE_OFF=		-DUSE_SSH=OFF
32
THREADSAFE_CMAKE_ON=	-DTHREADSAFE=ON
33
THREADSAFE_CMAKE_OFF=	-DTHREADSAFE=OFF
30
34
31
.include <bsd.port.pre.mk>
35
.include <bsd.port.pre.mk>
32
36
(-)libgit2/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (libgit2-0.21.1.tar.gz) = 7faed833d59890ca11957610e020aef3d91e56027408e956d5eb3c9f35dbcb29
1
SHA256 (libgit2-0.21.3.tar.gz) = 5c1b2276a54fd2bb2bd02f4721c53c98b8b218c6f6dbec05a94b46a0db2893be
2
SIZE (libgit2-0.21.1.tar.gz) = 3428317
2
SIZE (libgit2-0.21.3.tar.gz) = 3456471
(-)libgit2/pkg-plist (-1 / +1 lines)
Lines 66-71 Link Here
66
include/git2/sys/refs.h
66
include/git2/sys/refs.h
67
include/git2/sys/repository.h
67
include/git2/sys/repository.h
68
lib/libgit2.so
68
lib/libgit2.so
69
lib/libgit2.so.0.%%SHLIB_VER%%.0
69
lib/libgit2.so.%%PORTVERSION%%
70
lib/libgit2.so.%%SHLIB_VER%%
70
lib/libgit2.so.%%SHLIB_VER%%
71
libdata/pkgconfig/libgit2.pc
71
libdata/pkgconfig/libgit2.pc

Return to bug 196176